mirror of
https://github.com/sasjs/core.git
synced 2026-01-07 01:20:05 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8d64b30419 |
7
all.sas
7
all.sas
@@ -13400,6 +13400,9 @@ libname &libref;
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
To avoid hammering the box with many hits in rapid succession, a one
|
||||||
|
second pause is made between every request.
|
||||||
|
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@@ -13662,6 +13665,10 @@ data;run;%let jdswaitfor=&syslast;
|
|||||||
proc append base=&jdsrunning data=&jdsapp;
|
proc append base=&jdsrunning data=&jdsapp;
|
||||||
run;
|
run;
|
||||||
%let concurrency=%eval(&concurrency+1);
|
%let concurrency=%eval(&concurrency+1);
|
||||||
|
/* sleep one second after every request to smooth the impact */
|
||||||
|
data _null_;
|
||||||
|
call sleep(1,1);
|
||||||
|
run;
|
||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%if &jid=&jcnt %then %do;
|
%if &jid=&jcnt %then %do;
|
||||||
|
|||||||
@@ -34,6 +34,9 @@
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
To avoid hammering the box with many hits in rapid succession, a one
|
||||||
|
second pause is made between every request.
|
||||||
|
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@@ -296,6 +299,10 @@ data;run;%let jdswaitfor=&syslast;
|
|||||||
proc append base=&jdsrunning data=&jdsapp;
|
proc append base=&jdsrunning data=&jdsapp;
|
||||||
run;
|
run;
|
||||||
%let concurrency=%eval(&concurrency+1);
|
%let concurrency=%eval(&concurrency+1);
|
||||||
|
/* sleep one second after every request to smooth the impact */
|
||||||
|
data _null_;
|
||||||
|
call sleep(1,1);
|
||||||
|
run;
|
||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%if &jid=&jcnt %then %do;
|
%if &jid=&jcnt %then %do;
|
||||||
|
|||||||
Reference in New Issue
Block a user