mirror of
https://github.com/sasjs/core.git
synced 2025-12-11 06:24:35 +00:00
fix: adding a one second pause between every SAS Job Request in mv_jobflow.sas
This commit is contained in:
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
|
||||
|
||||
@@ -13662,6 +13665,10 @@ data;run;%let jdswaitfor=&syslast;
|
||||
proc append base=&jdsrunning data=&jdsapp;
|
||||
run;
|
||||
%let concurrency=%eval(&concurrency+1);
|
||||
/* sleep one second after every request to smooth the impact */
|
||||
data _null_;
|
||||
call sleep(1,1);
|
||||
run;
|
||||
%end;
|
||||
%end;
|
||||
%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
|
||||
|
||||
@@ -296,6 +299,10 @@ data;run;%let jdswaitfor=&syslast;
|
||||
proc append base=&jdsrunning data=&jdsapp;
|
||||
run;
|
||||
%let concurrency=%eval(&concurrency+1);
|
||||
/* sleep one second after every request to smooth the impact */
|
||||
data _null_;
|
||||
call sleep(1,1);
|
||||
run;
|
||||
%end;
|
||||
%end;
|
||||
%if &jid=&jcnt %then %do;
|
||||
|
||||
Reference in New Issue
Block a user