All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.trino.gateway.ha.config.RequestRouterConfiguration Maven / Gradle / Ivy

package io.trino.gateway.ha.config;

import lombok.Data;

@Data
public class RequestRouterConfiguration {
  // Local gateway port
  private int port;

  // Name of the routing gateway name (for metrics purposes)
  private String name;

  // Use SSL?
  private boolean ssl;
  private String keystorePath;
  private String keystorePass;

  private int historySize = 2000;

  // Use the certificate between gateway and trino?
  private boolean forwardKeystore;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy