HA gateway

if I want to configure multiple gateway address ,but only one code can be configured

only use ngnix???

public static ManagedChannel buildChannel(final ZeebeClientConfiguration config) {
URI address;
try {
address = new URI(“zb://” + config.getGatewayAddress());
} catch (URISyntaxException var3) {
throw new RuntimeException(“Failed to parse broker contact point”, var3);
}

    NettyChannelBuilder channelBuilder = NettyChannelBuilder.forAddress(address.getHost(), address.getPort());
    configureConnectionSecurity(config, channelBuilder);
    channelBuilder.keepAliveTime(config.getKeepAlive().toMillis(), TimeUnit.MILLISECONDS);
    channelBuilder.userAgent("zeebe-client-java/" + VersionUtil.getVersion());
    return channelBuilder.build();
}

Hi @erge

If you’re looking for help with Zeebe or Camunda Cloud head over to the Camunda Cloud forum. You should be able to get the help you need there.