ARROW-5643: [FlightRPC] Add PKCS#1 format keys for testing Flight in Java#5
Conversation
Author
|
Part of apache/arrow#4608 |
Member
|
@lihalite since I squashed you may have to update the submodule hash in your PR |
Author
|
Thanks, will do! |
pitrou
pushed a commit
to apache/arrow
that referenced
this pull request
Jun 24, 2019
Adds the ability to override hostname checks, so you can connect to localhost over TLS but still verify that the certificate is for some other domain. Example: when deploying on Kubernetes with headless services, clients connect directly to backend services and do load balancing themselves. Thus all instances of an application must present a certificate for the same hostname. To do health checks in such an environment, you can't connect to the TLS hostname (which may resolve to a different instance); you need to connect to localhost, and override the hostname check. Also needs apache/arrow-testing#5 Author: David Li <li.davidm96@gmail.com> Closes #4608 from lihalite/flight-tls-java and squashes the following commits: 581fc75 <David Li> Add ability to override SSL hostname checking
alamb
pushed a commit
to apache/arrow-rs
that referenced
this pull request
Apr 20, 2021
Adds the ability to override hostname checks, so you can connect to localhost over TLS but still verify that the certificate is for some other domain. Example: when deploying on Kubernetes with headless services, clients connect directly to backend services and do load balancing themselves. Thus all instances of an application must present a certificate for the same hostname. To do health checks in such an environment, you can't connect to the TLS hostname (which may resolve to a different instance); you need to connect to localhost, and override the hostname check. Also needs apache/arrow-testing#5 Author: David Li <li.davidm96@gmail.com> Closes #4608 from lihalite/flight-tls-java and squashes the following commits: 581fc7582 <David Li> Add ability to override SSL hostname checking
QuietCraftsmanship
pushed a commit
to QuietCraftsmanship/arrow
that referenced
this pull request
Jul 7, 2025
Adds the ability to override hostname checks, so you can connect to localhost over TLS but still verify that the certificate is for some other domain. Example: when deploying on Kubernetes with headless services, clients connect directly to backend services and do load balancing themselves. Thus all instances of an application must present a certificate for the same hostname. To do health checks in such an environment, you can't connect to the TLS hostname (which may resolve to a different instance); you need to connect to localhost, and override the hostname check. Also needs apache/arrow-testing#5 Author: David Li <li.davidm96@gmail.com> Closes #4608 from lihalite/flight-tls-java and squashes the following commits: 581fc7582 <David Li> Add ability to override SSL hostname checking
pribor
pushed a commit
to GlobalWebIndex/arrow
that referenced
this pull request
Oct 24, 2025
Adds the ability to override hostname checks, so you can connect to localhost over TLS but still verify that the certificate is for some other domain. Example: when deploying on Kubernetes with headless services, clients connect directly to backend services and do load balancing themselves. Thus all instances of an application must present a certificate for the same hostname. To do health checks in such an environment, you can't connect to the TLS hostname (which may resolve to a different instance); you need to connect to localhost, and override the hostname check. Also needs apache/arrow-testing#5 Author: David Li <li.davidm96@gmail.com> Closes apache#4608 from lihalite/flight-tls-java and squashes the following commits: 581fc75 <David Li> Add ability to override SSL hostname checking
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Turns out Netty can only read PKCS#1 format private keys.