admin.taskserverGetDefaultInferenceSize

admin.taskserverGetDefaultInferenceSize(
   config as element(configuration),
   group-id as (Number|String)
) as Number

Summary

This function returns the default amount of memory (in megabytes) that can be used by sem:store for inference.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
group-id The ID of the group to which the App Server belongs. Typically, this is the result of an admin:group-get-id call.

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  var config = admin.getConfiguration()
  var groupId = admin.groupGetId(config, "Default")
  admin.taskserverGetDefaultInferenceSize(config, groupId)

   //Returns the default memory size for inference on the task server, in megabytes 
  =>
  100
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy