
admin.taskserverGetThreads( config as element(configuration), group-id as (Number|String) ) as Number
This function returns the number of threads configured on task server in the specified group. This setting applies for each host in the group.
const admin = require('/MarkLogic/admin.xqy');
var config = admin.getConfiguration()
var groupId = admin.groupGetId(config, "Default")
admin.taskserverGetThreads(config, groupId)
//returns the number of threads configured on the task server
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.