Providing guidelines to configure a Load Balancer - HA proxy example #197
dario-vega
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Providing guidelines to configure a Load Balancer
This discussion provides an example for educational purposes only. We are not providing expertise about how to choose a Load Balancer, instructions to configure a specific Load Balancer, or the impact of using a Load Balancer, especially on performance.
This document provides an example of configuring an open-source Load Balancer in the Oracle NoSQL HTTP proxy context. It shows the impact of using a Load Balancer when configuring the Oracle NoSQL HTTP proxy in a Secure store—configuring the certificates.
SSL termination (a.k.a. SSL Offloading)
Load Balancer decrypts all HTTPS traffic when it arrives at the load balancer, and the data is sent to the destination server as plain HTTP traffic. This configuration cannot be used with Oracle NoSQL HTTP proxy
SSL passthrough
Load Balancer passes encrypted HTTPS traffic directly to the backend servers without decrypting the traffic on the load balancer (using the same certificate )
SSL Bridging
Load Balancer decrypts all HTTPS traffic when it arrives at the load balancer, and encrypts the traffic to the destination server (allow to use another SSL certificate to contact the backend - each backend)
Note: The Oracle NoSQL Database Proxy can run in one or multiple dedicated hosts. It can be hosted inside the nodes of the data store. You can use a load balancer as the front end, which has a back-end set of multiple NoSQL proxies on different hosts. While configuring a load balancer, you can add an HTTP health check. The Oracle NoSQL Database Proxy provides the following URI
/V2/health
for the HTTP health check. An HTTP request to this URI returns a successful response 200 OK.Beta Was this translation helpful? Give feedback.
All reactions