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