Skip To Content
ArcGIS Developer
Dashboard

Limits (system)

Description

The limits resource provides limits associated with the portal organization, such as user and organizational limits or scheduled tasks.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json | pjson

Response properties

PropertyDetails
UpdateInsightsUserLimit

The maximum number of scheduled Insight reports that can be created by an individual user.

UpdateInsightsOrgLimit

The maximum total number of scheduled Insight reports that can be created by all users in an organization.

ExecuteNotebooksUserLimit

The maximum number of active scheduled notebook tasks that can be owned by an individual user.

ExecuteNotebooksOrgLimit

The maximum total number of active scheduled notebook tasks that can be created by all users in an organization.

ExecuteWorkflowManagerUserLimit

The maximum number of scheduled recurring workflow manager jobs that can be created by an individual user.

ExecuteWorkflowManagerOrgLimit

The maximum total number of scheduled recurring workflow manager obs that can be created by all users in an organization.

FailedRunsToDisableTask

The number of times a task can fail consecutively before it is disabled.

Default value: 5

TaskRunHistoryCount

The number of scheduled task run results that will be reported and maintained for a scheduled task.

Default value: 30

Note:

TaskRunHistoryCount can only be configured to a maximum of 50 runs.

GPServiceUserLimit

The maximum number of active scheduled Geoprocessing Service tasks that can be owned by an individual user.

GPServiceOrgLimit

The maximum total number of active scheduled Geoprocessing Service tasks that can be created by all users in an organization.

Example usage

The following is a sample request URL used to access the limits resource:

https://machine.domain.com/webadaptor/portaladmin/system/limits?f=json

JSON Response syntax

{"ScheduleTask": [
    {
        "limitName": "UpdateInsightsOrgLimit",
        "numLimit": <number>
    },
    {
        "limitName": "ExecuteNotebooksUserLimit",
        "numLimit": <number>
    },
    {
        "limitName": "ExecuteNotebooksOrgLimit",
        "numLimit": <number>
    },
    {
        "limitName": "ExecuteWorkflowManagerUserLimit",
        "numLimit": <number>
    },
    {
        "limitName": "ExecuteWorkflowManagerOrgLimit",
        "numLimit": <number>
    },
    {
        "limitName": "GPServiceUserLimit",
        "numLimit": <number>
    },
    {
        "limitName": "GPServiceOrgLimit",
        "numLimit": <number>
    },
    {
        "limitName": "FailedRunsToDisableTask",
        "numLimit": <number>
    },
    {
        "limitName": "TaskRunHistoryCount",
        "numLimit": <number>
    }
]}

JSON Response example

{"ScheduleTask": [
    {
        "limitName": "UpdateInsightsUserLimit",
        "numLimit": 20
    },
    {
        "limitName": "UpdateInsightsOrgLimit",
        "numLimit": 50
    },
    {
        "limitName": "ExecuteNotebooksUserLimit",
        "numLimit": 20
    },
    {
        "limitName": "ExecuteNotebooksOrgLimit",
        "numLimit": 200
    },
    {
        "limitName": "ExecuteWorkflowManagerUserLimit",
        "numLimit": 30
    },
    {
        "limitName": "ExecuteWorkflowManagerOrgLimit",
        "numLimit": 100
    },
    {
        "limitName": "GPServiceUserLimit",
        "numLimit": 20
    },
    {
        "limitName": "GPServiceOrgLimit",
        "numLimit": 100
    },
    {
        "limitName": "FailedRunsToDisableTask",
        "numLimit": 5
    },
    {
        "limitName": "TaskRunHistoryCount",
        "numLimit": 30
    }
]}