Github user uce commented on a diff in the pull request:
https://github.com/apache/flink/pull/2083#discussion_r68587921
--- Diff:
flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontendParser.java
---
@@ -305,6 +307,11 @@ public static void printHelpForSavepoint() {
formatter.setSyntaxPrefix(" \"savepoint\" action options:");
formatter.printHelp(" ", getSavepointOptions(new Options()));
System.out.println();
+ System.out.println("\n Examples:");
+ System.out.println(" - Trigger savepoint: bin/flink savepoint
<Job ID>");
+ System.out.println(" - Dispose savepoint:");
+ System.out.println(" * For a running job: bin/flink
savepoint -d <Path> <Job ID>");
+ System.out.println(" * For a terminated job: bin/flink
savepoint -d <Path> -j <Jar> [-c <mainClass> -C <classPath>]");
--- End diff --
True, that's inconsistent.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---