Skip to content

Commit

Permalink
FlinkServerDriver port 0 usage documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
angoenka committed Sep 26, 2018
1 parent 8d3389d commit 5657bf7
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,16 @@ public static class ServerConfiguration {
@Option(name = "--job-host", usage = "The job server host name")
private String host = "";

@Option(name = "--job-port", usage = "The job service port. (Default: 8099)")
@Option(
name = "--job-port",
usage = "The job service port. 0 to use a dynamic port. (Default: 8099)"
)
private int port = 8099;

@Option(name = "--artifact-port", usage = "The artifact service port. (Default: 8098)")
@Option(
name = "--artifact-port",
usage = "The artifact service port. 0 to use a dynamic port. (Default: 8098)"
)
private int artifactPort = 8098;

@Option(name = "--artifacts-dir", usage = "The location to store staged artifact files")
Expand Down

0 comments on commit 5657bf7

Please sign in to comment.