Loading TOC...

MarkLogic Server 11.0 Product Documentation
admin.bucketAssignmentPolicy

admin.bucketAssignmentPolicy() as element(db.assignmentPolicy)

Summary

This function returns an element that represents the bucket assignment policy. Use the admin.databaseSetAssignmentPolicy function to set the assignment policy.

Example


const admin = require('/MarkLogic/admin');

const config = admin.getConfiguration();
const dbId = admin.databaseGetId(config, 'db1');
const policy = admin.bucketAssignmentPolicy();

admin.databaseSetAssignmentPolicy(config, dbId, policy);

// returns the new configuration element -- use admin.saveConfiguration
// to save the changes to the configuration or pass the configuration
// to other Admin API functions to make other changes.
   

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.