Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views/settings/resource.htm |
<div ng-controller="resourceSettings">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-12 col-md-offset-0">
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="cpu_limit">{{ lang.t("CPU Limit") }}</label>
<div class="col-md-9 col-sm-9 col-xs-12">
<input-dropdown addon="%" options="{0:lang.t('Unlimited'),25:25,50:50,100:100,200:200}" ng-model="saveData.cpu_limit">
<input validate-field="int" min="5" class="form-control" ng-model="saveData.cpu_limit" id="cpu_limit" type="text" value="" />
</input-dropdown>
<p class="help-block">
{{ lang.t("limit CPU usage in percentage; 100% is one core.") }}<br />
<strong>{{ lang.t("Recommended values: 100% for a single/dual CPU server, anything above we recommend values between 200% - 400%") }}</strong>
</p>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="memory_limit">{{ lang.t("Memory Limit") }}</label>
<div class="col-md-9 col-sm-9 col-xs-12">
<input-dropdown addon="GB" options="{0:lang.t('Unlimited'),1:1,2:2,4:4,6:6,8:8,12:12,16:16,24:24,32:32}" ng-model="saveData.memory_limit">
<input validate-field="int" min="0" class="form-control" ng-model="saveData.memory_limit" id="memory_limit" type="text" value="" />
</input-dropdown>
<p class="help-block">
{{ lang.t("limit Memory usage in GB.") }}<br />
<strong>{{ lang.t("Recommended Values: 4GB is sufficient for nearly all server environments. We recommend setting no more than 50% of the available server memory to allow memory for other services/processes.") }}</strong><br /><br />
{{ lang.t("This option enables you to adjust the maximum memory limit and applies Per Task. Each Task configured in Settings can consume memory up to the limit you configure. If the memory limit is too low, this can cause sudden/unexpected failures due to being unable to allocate sufficient memory.") }}<br />
{{ lang.t("Unless you have a specific requirement to change this option, we recommend keeping the 4GB (Default) value for the best performance and reliability.") }}
</p>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="cpu_limit">{{ lang.t("IO Read Limit") }}</label>
<div class="col-md-9 col-sm-9 col-xs-12">
<input-dropdown addon="MB/s" options="{0:lang.t('Unlimited'),1:1,5:5,10:10,50:50,100:100,250:250}" ng-model="saveData.io_read_limit">
<input validate-field="int" min="0" class="form-control" ng-model="saveData.io_read_limit" id="io_read_limit" type="text" value="" />
</input-dropdown>
<p class="help-block">{{ lang.t("limit IO read usage in MB per second") }}</p>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="cpu_limit">{{ lang.t("IO Write Limit") }}</label>
<div class="col-md-9 col-sm-9 col-xs-12">
<input-dropdown addon="MB/s" options="{0:lang.t('Unlimited'),1:1,5:5,10:10,50:50,100:100,250:250}" ng-model="saveData.io_write_limit">
<input validate-field="int" min="0" class="form-control" ng-model="saveData.io_write_limit" id="io_write_limit" type="text" value="" />
</input-dropdown>
<p class="help-block">{{ lang.t("limit IO write usage in MB per second") }}</p>
</div>
</div>
</div>
</div>
</div>