Was this page helpful?
Caution
You're viewing documentation for an unstable version of ScyllaDB Enterprise. Switch to the latest stable version.
tasks user-ttl - Gets or sets user_task_ttl value in seconds, i.e. time for which tasks started by user are kept in task manager after they are finished.
The new value is set only in memory. To change the configuration, modify user_task_ttl_in_seconds
in scylla.yaml
.
You can also run Scylla with --user-task-ttl-in-seconds
parameter.
If user_task_ttl == 0, tasks are unregistered from task manager immediately after they are finished.
nodetool tasks user-ttl [--set <time_in_seconds>]
--set
- sets user_task_ttl to the specified value.
For example:
Gets user_task_ttl value:
> nodetool tasks user-ttl
Sets user_task_ttl value to 10 seconds:
> nodetool tasks user-ttl --set 10
Was this page helpful?
On this page