...
Jira | ||||||||
---|---|---|---|---|---|---|---|---|
|
Use Case
Kill Tasks in case of Connection Loss
...
- Heartbeat Period:
http_heartbeat_period
- The period after which the Agent sends a heartbeat to Master should no other HTTP operation on behalf of the Master be executed.
- Default: 10s
- Heartbeat Timeout:
http_heartbeat_timeout
- The overall timeout that determines if a connection is considered to be lost permanently.
- Includes the heartbeat period and the delay after which the Master will send its heartbeat
- Default: 15s60s
Example
Code Block | ||||
---|---|---|---|---|
| ||||
<?xml version="1.0" encoding="utf-8"?> <process_class> <remote_schedulers> <remote_scheduler remote_scheduler="http://127.0.0.2:4445" http_heartbeat_period="10" http_heartbeat_timeout="560"/> </remote_schedulers> </process_class> |
...