UNSUBSCRIBE SERVICE
UNSUBSCRIBE SERVICE
unsubscribes a worker from a service queue for the duration of the connected session.
Note
If you haven’t already, read the Workload manager guide.
See also SUBSCRIBE SERVICE, SHOW SUBSCRIBED INSTANCES.
Permissions
To unsubscribe a worker from a service, the current role must have the SUPERUSER
permission.
Syntax
subscribe_service_statement ::=
SELECT UNSUBSCRIBE_SERVICE( worker_id, service_name );
worker_id ::= text
service_name ::= text
Parameters
Parameter |
Description |
---|---|
|
The name of the worker to unsubscribe |
|
The service name to unsubscribe from |
Notes
If the service name does not currently exist, it will be created
Warning
UNSUBSCRIBE_SERVICE
removes the service subscription immediately, but the setting applies for the duration of the session. To apply a persistent setting, use the initialSubscribedServices
configuration setting. Read the Workload manager guide for more information.
Examples
Unsubscribing a worker from a service queue
Each worker is assigned an automatic ID, and is subscribed to the 'sqream'
queue upon start.
t=> SELECT SHOW_SUBSCRIBED_INSTANCES();
service | servernode | serverip | serverport
--------+------------+---------------+-----------
sqream | node_9383 | 192.168.0.111 | 5000
sqream | node_9384 | 192.168.0.111 | 5001
sqream | node_9385 | 192.168.0.111 | 5002
sqream | node_9551 | 192.168.1.91 | 5000
etl | node_9551 | 192.168.1.91 | 5000
We want to modify node_9551 to leave the ETL queue:
t=> SELECT UNSUBSCRIBE_SERVICE('node_9551','etl');
executed
t=> SELECT SHOW_SUBSCRIBED_INSTANCES();
service | servernode | serverip | serverport
--------+------------+---------------+-----------
sqream | node_9383 | 192.168.0.111 | 5000
sqream | node_9384 | 192.168.0.111 | 5001
sqream | node_9385 | 192.168.0.111 | 5002
sqream | node_9551 | 192.168.1.91 | 5000