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:
- site.status_show_txn_info – Show transaction profiling information
- site.status_show_executor_info – Show PartitionExecutor profiling information
- site.status_show_thread_info – Show the current state of all threads in the JVM
- site.pool_profiling – Show the number of objects in the various object pools for the DBMS
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