Modify Client Download cache settings from default
Log In or Register to download the BES file, and more.

1 Votes

Description

_BESClient_Download_PreCacheStageDiskLimitMB

This setting stops pre-cache stage downloading if the client is already using this much pre-cache stage download disk space. Actions marked for pre-caching will report constrained if the total space used for downloads exceeds this limit.

  • Default Value: 250 (250 MB)
  • Setting Type: Numeric (MB)
  • Value Range: 0 - 2147483647

 

_BESClient_Download_NormalStageDiskLimitMB

This setting stops normal stage downloading if the client is already using this much normal stage download disk space. Actions marked for normal downloads will report constrained if the total space used for downloads exceeds this limit.

Note that normal stage downloads may exceed this limit by borrowing some space from the pre-cache stage space if it is not full.

  • Default Value: 2048 (2 GB)
  • Setting Type: Numeric (MB)
  • Value Range: 0 - 2147483647

 


Property Details

ID10520
StatusBeta - Preliminary testing ready for more
TitleModify Client Download cache settings from default
DomainBESC
SourceInternal
Source Release Date3/22/2016 12:00:00 AM
Is TaskTrue
Added by on 3/22/2016 6:35:07 PM
Last Modified by on 3/22/2016 6:35:07 PM
Counters 13699 Views / 295 Downloads
User Rating 1 star 2 star 3 star 4 star 5 star * Average over 1 rating. ** Log In or Register to add your rating.

Relevance

Used in 1 fixlet   * Results in a true/false
Show indented relevance
(not exists setting "_BESClient_Download_PreCacheStageDiskLimitMB" of client OR value of setting "_BESClient_Download_PreCacheStageDiskLimitMB" of client as integer > 4096) or (not exists setting "_BESClient_Download_NormalStageDiskLimitMB" of client OR value of setting "_BESClient_Download_NormalStageDiskLimitMB" of client as integer > 4096)

Actions

Action 1 (default)

Action Link Click here to deploy this action.
Script Type BigFix Action Script
action parameter query "setDownloadCacheSize" with description "Please enter the download cache size you would like to to set in MB (valid limits range from 1024 to 2147483647 bytes/sec):"
//check for numbers, we don't like letters or special characters.
continue if {parameter "setDownloadCacheSize" of action as integer>= 1 AND parameter "setDownloadCacheSize" of action as integer <= 2147483647}

setting "_BESClient_Download_PreCacheStageDiskLimitMB"="{parameter "setDownloadCacheSize" of action}" on "{parameter "action issue date" of action}" for client
setting "_BESClient_Download_NormalStageDiskLimitMB"="{parameter "setDownloadCacheSize" of action}" on "{parameter "action issue date" of action}" for client
Success Criteria

This action will be considered successful when the applicability relevance evaluates to false.


Sharing

Social Media:
Share this page on Yammer

Comments

Log In or Register to leave comments!
vtancredi -
should adjust first line of action 1 to remove incorrect units in description "/sec" "action parameter query "setDownloadCacheSize" with description "Please enter the download cache size you would like to to set in MB (valid limits range from 1024 to 2147483647 bytes):"