Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 29.4k
[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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
409a6436b7ff08a429135ced09cee6c274ef6825d1a3f551bFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
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 ContributorAuthor 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> | ||
Uh oh!
There was an error while loading. Please reload this page.
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.