-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-17874][core] Add SSL port configuration. #16625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
409a643
6b7ff08
a429135
ced09ce
e6c274e
f6825d1
a3f551b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1796,6 +1796,20 @@ Apart from these, the following properties are also available, and may be useful | |
| Configuration</a> for details on hierarchical SSL configuration for services. | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.ssl.[namespace].port</code></td> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about saying
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was intentional. "spark.ssl.port" doesn't make that much sense if you think about it; you want things like the master UI and history server UI to have different, well known ports, so having this shared config key here doesn't make a lot of sense. For the other configs, such as algorithms and keystore locations, sharing configuration is ok. |
||
| <td>None</td> | ||
| <td> | ||
| The port where the SSL service will listen on. | ||
|
|
||
| <br />The port must be defined within a namespace configuration; see | ||
| <a href="security.html#ssl-configuration">SSL Configuration</a> for the available | ||
| namespaces. | ||
|
|
||
| <br />When not set, the SSL port will be derived from the non-SSL port for the | ||
| same service. A value of "0" will make the service bind to an ephemeral port. | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.ssl.enabledAlgorithms</code></td> | ||
| <td>Empty</td> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch.