Cray Graph Engine (CGE) Command Output
List of possible outputs generated by CGE CLI commands.
CGE CLI commands produce the following types of output:
- Logging - Provides diagnostic information about what a command is doing and is useful primarily for diagnosing any issues that may occur. All logging output goes to standard error.
- Command Output - Provides actual informational output of the command's status, such as query results, update success/failure etc. All command output is transmitted to the standard output.
As each type of output goes to a different output stream, output can easily be separated using standard shell redirection e.g.
$ cge-cli query example.rq > results.txt 2> query-client.logThe above example redirects the command output to the results.txt file and the logging to query-client.log file.