Skip to content
URL:
https://<root>/system/limits
Methods:
GET
Operations:
Update
Version Introduced:
11.5

Access requirements

Required privileges

The Enterprise Administrator API requires privilege-based access. An administrator must be assigned a specific user privilege, or role, to access any given endpoint. Listed below are the user privileges or roles an administrator can be assigned that provides access to this endpoint. If multiple privileges are listed, only one needs to be assigned to gain access.


Tokens

This API requires token-based authentication. A token is automatically generated for administrators who sign in to the Enterprise Administrator API directory's HTML interface. Tokens generated in this way are stored for the entirety of the session.

Those accessing the API directory outside of the HTML interface will need to acquire a session token from the generateToken operation in the Enterprise Directory API. For security reasons, all POST requests made to the Enterprise Administrator API must include a token in the request body.


Learn how to generate a token

Description

The limits resource provides limits associated with the organization (such as scheduled tasks for ArcGIS Notebooks, Workflow Manager, or geoprocessing services) for individual users and for an organization as a whole. Limits can be updated using the Update Limits operation.

Request parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | json | pjson

Response properties

PropertyDetails

ExecuteNotebooksUserLimit

The maximum number of active scheduled notebook tasks that can be owned by an individual user. By default, a user can only own 20 active notebooks tasks. When this limit is reached, the user will not be able to create a new notebook task until one of the notebook tasks change its status from Active to Complete, Failed, or Inactive.

ExecuteNotebooksOrgLimit

The maximum number of total active scheduled notebook tasks for an organization. By default, an organization is limited to 200 active notebook tasks. When this limit is reached, users will not be able to create any additional notebook tasks.

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 jobs for an organization.

FailedRunsToDisableTask

The number of times a task can fail consecutively before it is switched to a failed state. By default, a task can fail 5 times. When this limit is met, the task is changed from its Active state, and the task owner must identify and rectify the issue before switching the task's access back to Active.

TaskRunHistoryCount

The total number of runs that are reported and maintained for a scheduled task. By default, only the 30 most recent runs will be maintained. Any tasks that are not within the most recent 30 runs will be permanently deleted.

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 for an organization.

Example usage

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

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/admin/system/limits?f=json

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "ScheduleTask": [
    {
      "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

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "ScheduleTask": [
    {
      "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
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.