Documentation > System Stored Procedures > @ExecutorStatus

« @AdHoc

@ExecutorStatus

Force the HStoreSiteStatus daemon to dump the status of a node to the target HStoreSite’s server log file.
The amount of information that is dumped in the output can be controlled with the following HStoreConf parameters:

Input Parameters

Name Type Description
PARTITION Integer The id of the partition for the node that you want to dump its current status.

Return Values

A single-row, single-column VoltTable indicating that the status of the operation.
1 – The operation completed succesfully.
0 – The operation failed. Refer the site logs to determine why.

Java Example

Client client = ClientFactory.createClient();
client = client.createConnection(hostname, port);
ClientResponse cresponse = client.callProcedure("@ExecutorStatus", partitionId);

Command-Line Example

hstore> EXEC @ExecutorStatus 1

« @AdHoc