- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-10-2020 06:35 AM
(689 views)
Hi everyone.
So far, I have used the following code to organize my access to files (one process blocked access to files, and another process where access was blocked tried to access the file in a loop).
%macro trylock(datasetIn =, timeout = 10, sleep = 1);
%local starttime;
%let starttime = %sysfunc(datetime());
%do %until(&syslckrc <= 0
or %sysevalf(%sysfunc(datetime()) > (&starttime + &timeout)));
%put trying open ...;
data _null_;
dsid = 0;
do until (dsid > 0 or datetime() > (&starttime + &timeout));
dsid = open("&datasetIn");
if (dsid = 0) then rc = sleep(&sleep);
end;
if (dsid > 0) then rc = close(dsid);
run;
%put trying lock ...;
lock &datasetIn;
%put syslckrc = &syslckrc;
%end;
%mend trylock;
Due to the large amount of data I had to buy another hard drive (WD4003FFBX) and you know what it is like with ordinary hdd disks, if several processes try to download data from one disk at the same time, the performance drops drastically.
Is there any procedure that would block access to the entire disk for only one process ??
Thank you in advance for your help.
Best wishes.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- replace spinning metal with state of the art (SSD)
- organize your processes, so they run in sequence
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@Kurt_Bremser wrote:
- replace spinning metal with state of the art (SSD)
🙂
@Kurt_Bremser wrote:
- organize your processes, so they run in sequence
It would cost me too much work and the effect would be unsatisfactory.