The addNodeStatus action lists details about machines that are currently being added to the server. This is particularly useful in a distributed environment to monitor the status of worker nodes joining the CAS cluster. It helps administrators verify that new nodes are being added successfully and to troubleshoot any issues that may arise during the process.
This action does not require any specific data to be created beforehand. It is a server monitoring action.
| 1 | /* No |
| 2 | data creation is necessary to use this action. */ |
This example calls the addNodeStatus action to retrieve the current status of any nodes being added to the CAS server.
| 1 | PROC CAS; |
| 2 | SESSION.addNodeStatus; |
| 3 | RUN; |
This example demonstrates how to call the addNodeStatus action and store the output in a CASL variable named 'nodeStatusResult'. This allows for further programmatic inspection of the results, for instance, to check if a specific node has successfully joined.
| 1 | PROC CAS; |
| 2 | SESSION.addNodeStatus RESULT=nodeStatusResult; |
| 3 | PRINT nodeStatusResult; |
| 4 | RUN; |
A CAS administrator is performing a routine, planned scale-out of the environment during a low-traffic maintenance window. They are adding two new worker nodes to an existing CA...
As part of a major infrastructure upgrade for a financial risk modeling platform, a systems architect is adding 10 new high-performance worker nodes to the CAS cluster simultane...
A junior CAS administrator attempts to add a new worker node, but it fails to appear in the active node list. They suspect a network misconfiguration (e.g., a firewall blocking ...