-
Notifications
You must be signed in to change notification settings - Fork 0
ResidentHttpHandler
A resident handler runs within the Executor scope. For Kubernetes the operation will run within the same pod and same Docker image as the Executor. Whereas Handlers are run as separate pods / images and have their own memory & CPU constraints.
Note: Be mindful of memory & CPU constraints when deploying your Executor pod
The HTTP Request handler also provides the HTTP Agenda Post handler functionality (posts the body to the Agenda endpoint).
Main class: HandlerEntryPoint
This class has a set of command line arguments for running locally. See the comments on the main method for any requirements.
The AgendaPost handler has reduced capabilities focusing specifically on posting an Agenda.
| Field | Type | AgendaPost Supported | Notes |
|---|---|---|---|
| url | String | No | |
| headers | ParamMap | Yes | |
| postData | Object | Yes | |
| postDataEncoding | String | Yes | TODO: this should be postDataFormat base64 , json, ""(blank - passthrough) |
| contentType | String | No | |
| requestMethod | String | No |
The postData may be submitted in multiple forms.
| postDataEncoding | Expected Input Object | Notes |
|---|---|---|
| base64 | Base64 Encoded String | |
| json | Map<String, Object> (generally whatever json would store an object as in its generic form) | "" (blank) NOT NULL |
| Field | Type | Notes |
|---|---|---|
| responseCode | Integer | HTTP response code |
| responseBody | String | The raw response body |
Managed currently in the external.properties of the executor.
- Submission
- Scheduling
-
Execution
the ResourcePool
Agenda
the workflow
Agenda Template
the workflow definition
Customer
Insight
the scheduling queue definition
Operation Progress
the state of the running Agenda operations
Progress
the state of the running Agendas
ResourcePool
the processing resources
Agenda Service
the workflow submission
Progress Service
rolled up agenda progress summary
ResourcePool Service
getting work and updating progress
AgendaReclaimer
restarting stuck Agendas
AgendaRetry
retrying failed Agendas
DataObjectReaper
reaping expired data objects
PodReaper
reaping stuck Kubernetes pods