Search Results

7 résultats trouvés Page 1 / 1
Action CAS
Voir

getCacheInfo

Retrieves information about CAS disk cache usage, the CAS server directory name, and the file system path for that cache.

Exemple
Voir

List CAS Disk Cache Information

proc cas; builtins.getCacheInfo; run;

Exemple
Voir

List CAS Disk Cache Information (Unformatted)

proc cas; builtins.getCacheInfo / format=FALSE; run;

FAQ
Voir

What is the getCacheInfo Action?

The getCacheInfo Action retrieves information about CAS disk cache usage, the CAS server directory name, and the file system path for that cache.

FAQ
Voir

What is the 'format' parameter in getCacheInfo Action?

The 'format' parameter, when set to False, returns numeric values instead of human-readable formatted values. Its alias is 'formatted' and the default value is TRUE.

Code SAS
Voir

CAS Disk Cache Monitoring

proc cas; session MonitorCDC; accessControl.assumeRole / adminRole="superuser"; builtins.getCacheInfo result=results; describe results; run; print results.diskCacheInfo; run; quit;

Code Article
Voir

Monitoring CAS_CACHE_DISK: Under the Hood of SAS Viya Memory

proc cas; /* ------------------------------------------------------------------- OBJECTIF : Auditer l'espace disque du CAS_DISK_CACHE PRÉREQUIS : Droits suffisants pour assumer le rôle de Superuser ------------------------------------------------------------------- */...