Proxy support with SNI routing

    The proxy in Pulsar acts as a reverse proxy, and creates a gateway in front of brokers. Proxies such as Apache Traffic Server (ATS), HAProxy, Nginx, and Envoy are not supported in Pulsar. These proxy-servers support SNI routing. SNI routing is used to route traffic to a destination without terminating the SSL connection. Layer 4 routing provides greater transparency because the outbound connection is determined by examining the destination address in the client TCP packets.

    Pulsar clients (Java, C++, Python) support SNI routing protocol, so you can connect to brokers through the proxy. This document walks you through how to set up the ATS proxy, enable SNI routing, and connect Pulsar client to the broker through the ATS proxy.

    To support with ATS, the inbound connection must be a TLS connection. Pulsar client supports SNI routing protocol on TLS connection, so when Pulsar clients connect to broker through ATS proxy, Pulsar uses ATS as a reverse proxy.

    Pulsar supports SNI routing for geo-replication, so brokers can connect to brokers in other clusters through the ATS proxy.

    This section explains how to set up and use ATS as a reverse proxy, so Pulsar clients can connect to brokers through the ATS proxy using the SNI routing protocol on TLS connection.

    The records.config file is located in the /usr/local/etc/trafficserver/ directory by default. The file lists configurable variables used by the ATS.

    To configure the records.config files, complete the following steps.

    1. Update TLS port (http.server_ports) on which proxy listens, and update proxy certs (ssl.client.cert.path and ssl.client.cert.filename) to secure TLS tunneling.
    2. Configure server ports (http.connect_ports) used for tunneling to the broker. If Pulsar brokers are listening on 4443 and 6651 ports, add the brokers service port in the http.connect_ports configuration.

    The following is an example.

    The ssl_server_name file is used to configure TLS connection handling for inbound and outbound connections. The configuration is determined by the SNI values provided by the inbound connection. The file consists of a set of configuration items, and each is identified by an SNI value (fqdn). When an inbound TLS connection is made, the SNI value from the TLS negotiation is matched with the items specified in this file. If the values match, the values specified in that item override the default values.

    1. server_config = {
    2. {
    3. fqdn = 'pulsar-broker-vip',
    4. tunnel_route = 'pulsar-broker-vip:6651'
    5. },
    6. fqdn = 'pulsar-broker1',
    7. # Forward to Pulsar broker-1 which is listening on 6651
    8. tunnel_route = 'pulsar-broker1:6651'
    9. },
    10. {
    11. fqdn = 'pulsar-broker2',
    12. # Forward to Pulsar broker-2 which is listening on 6651
    13. tunnel_route = 'pulsar-broker2:6651'
    14. },
    15. }

    After you configure the ssl_server_name.config and records.config files, the ATS-proxy server handles SNI routing and creates TCP tunnel between the client and the broker.

    ATS SNI-routing works only with TLS. You need to enable TLS for the ATS proxy and brokers first, configure the SNI routing protocol, and then connect Pulsar clients to brokers through ATS proxy. Pulsar clients support SNI routing by connecting to the proxy, and sending the target broker URL to the SNI header. This process is processed internally. You only need to configure the following proxy configuration initially when you create a Pulsar client to use the SNI routing protocol.

    • Java
    • C++
    • Python
    1. ClientConfiguration config = ClientConfiguration();
    2. config.setUseTls(true);
    3. config.setTlsAllowInsecureConnection(false);
    4. config.setAuth(pulsar::AuthTls::create(
    5. "/path/to/client-cert.pem", "/path/to/client-key.pem"););
    6. Client client("pulsar+ssl://ats-proxy:443", config);

    You can use the ATS proxy for geo-replication. Pulsar brokers can connect to brokers in geo-replication by using SNI routing. To enable SNI routing for broker connection cross clusters, you need to configure SNI proxy URL to the cluster metadata. If you have configured SNI proxy URL in the cluster metadata, you can connect to broker cross clusters through the proxy over SNI routing.

    Pulsar client SNI

    In this example, a Pulsar cluster is deployed into two separate regions, us-west and us-east. Both regions are configured with ATS proxy, and brokers in each region run behind the ATS proxy. We configure the cluster metadata for both clusters, so brokers in one cluster can use SNI routing and connect to brokers in other clusters through the ATS proxy.

    1. ./pulsar-admin clusters update \
    2. --broker-url-secure pulsar+ssl://east-broker-vip:6651 \
    3. --url http://east-broker-vip:8080 \
    4. --proxy-protocol SNI \

    (b) Configure the cluster metadata for us-west with us-west broker service URL and ATS proxy URL with SNI proxy-protocol.