Enabling Admin API Support

By default, we disabled Arcadia Enterprise Admin API URL support. A platform administrator can enable this support, at the level of individual data types, through site-specific settings.

Cloudera Manager

In Cloudera Manager, use the Arcadia Visualization Server Advanced Configuration Snippet (Safety Valve) for settings_cm.py field for enabling Admin API.

Enabling Admin API in Cloudera Manager
Ambari Stacks

On the Ambari interface, enter the settings in the ArcViz Settings field.

MapR

On MapR, enter the settings directly in the settings.py file.

To enable specific data types, include them on the assignment line. We are only enabling visuals and datasets:

ADMIN_API_URL_LIST  = ['visuals', 'datasets']
To enable all data type support, you can either list them all in the text box, as we do here:
ADMIN_API_URL_LIST  = ['visuals', 'datasets', 'connections', 'users', 'groups',
   'roles', 'segments', 'filterassociations']

Or use the wild card to specify all options:

ADMIN_API_URL_LIST  = ['*']