
admin.taskserverGetThreads( config as element(configuration), group-id as (Number|String) ) as Number
This function returns the number of threads configured on the task server for the specified group. This setting applies for each in the group.
const admin = require('/MarkLogic/admin.xqy');
const config = admin.getConfiguration()
const 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.