BookmarkSubscribeRSS Feed
makset
Obsidian | Level 7

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
makset
Obsidian | Level 7

@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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 472 views
  • 0 likes
  • 2 in conversation