Other Configurations
> Documentation > Docs > INFINI Gateway > References > Other Configurations

Other Configurations #

Advanced Usage #

Templates #

Example:

configs.template:
  - name: "es_gw1"
    path: ./sample-configs/config_template.tpl
    variable:
      name: "es_gw1"
      binding_host: "0.0.0.0:8000"
      tls_on_entry: true
      elasticsearch_endpoint: "http://localhost:9200"
NameTypeDescription
configs.templatearrayConfiguration templates, can specify multiple templates with corresponding parameters
configs.template[].namestringName of the configuration
configs.template[].pathstringTemplate configuration path
configs.template[].variablemapTemplate parameter settings, variables in the template are used as $[[variable_name]]

Environment Variables #

The Gateway supports the use of environment variables for flexible parameter control within the configuration.

First, define the default values for environment variables in the configuration, as follows:

env:
  PROD_ES_ENDPOINT: http://localhost:9200
  PROD_ES_USER: elastic
  PROD_ES_PASS: password

Then, you can use environment variables in the configuration using the following syntax:

elasticsearch:
  - name: prod
    enabled: true
    endpoints:
      - $[[env.PROD_ES_ENDPOINT]]
    discovery:
      enabled: false
    basic_auth:
      username: $[[env.PROD_ES_USER]]
      password: $[[env.PROD_ES_PASS]]

Note that external environment variables take precedence over internal environment variable settings in the configuration. For example, to override environment variables when starting the program, use the following command:

PROD_ES_ENDPOINT=http://1.1.1.1:9200 LOGGING_ES_ENDPOINT=http://2.2.2.2:9201 ./bin/gateway

System Configuration #

System configuration is mainly used to set the fundamental properties of the Gateway:

NameTypeDescription
path.datastringData directory, default is data
path.logsstringLog directory, default is log
path.configsstringConfiguration directory, default is config
log.levelstringLog level, default is info
log.debugboolWhether to enable debug mode. When enabled, the program exits immediately in case of an exception, printing the complete stack trace. Used for debugging and fault localization. Default is false, do not enable in production as it may result in data loss.
log.formatboolLog format, default is [%Date(01-02) %Time] [%LEV] [%File:%Line] %Msg%n. Format References
log.disable_file_outputboolWhether to disable local file log output, default is false. Use this in container environments if you don’t want local log output.
allow_multi_instanceboolWhether to allow running multiple Gateway instances on a single machine, default is false
skip_instance_detectboolWhether to skip Gateway instance detection, default is false
max_num_of_instancesintMaximum number of Gateway instances, default is 5
configs.auto_reloadboolWhether to support dynamic loading of configurations from path.configs

Local Disk Queue #

Example:

disk_queue:
  upload_to_s3: true
  s3:
    server: my_blob_store
    location: cn-beijing-001
    bucket: infini-store
  max_bytes_per_file: 102400
NameTypeDescription
disk_queue.min_msg_sizeintMinimum byte limit for a single message sent to the queue, default is 1
disk_queue.max_msg_sizeintMaximum byte limit for a single message sent to the queue, default is 104857600 (100MB)
disk_queue.sync_every_recordsintSynchronization interval in terms of the number of records, default is 1000
disk_queue.sync_timeout_in_msintSynchronization interval in milliseconds, default is 1000 milliseconds
disk_queue.max_bytes_per_fileintMaximum size of a single file in the local disk queue. If exceeded, a new file is created. Default is 104857600 (100MB)
disk_queue.max_used_bytesintMaximum allowed storage space used by the local disk queue
disk_queue.warning_free_bytesintFree storage space threshold for disk space warnings, default is 10737418240 (10GB)
disk_queue.reserved_free_bytesintProtected value for free storage space on disk. Once reached, the disk becomes read-only and no more writes are allowed. Default is 5368709120 (5GB)
disk_queue.auto_skip_corrupted_fileboolWhether to automatically skip corrupted disk files, default is true
disk_queue.upload_to_s3boolWhether to upload disk queue files to S3, default is false
disk_queue.s3.asyncboolWhether to asynchronously upload to the S3 server
disk_queue.s3.serverstringS3 server ID
disk_queue.s3.locationstringS3 server location
disk_queue.s3.bucketstringS3 server bucket
disk_queue.retention.max_num_of_local_filesintMaximum number of files to retain locally after uploading to S3, default is 3
disk_queue.compress.segment.enabledboolWhether to enable file-level compression, default is false

S3 #

Example:

s3:
  my_blob_store:
    endpoint: "192.168.3.188:9000"
    access_key: "admin"
    access_secret: "gogoaminio"
NameTypeDescription
s3.[id].endpointstringS3 server address
s3.[id].access_keystringS3 server key
s3.[id].access_secretstringS3 server secret key
s3.[id].tokenstringS3 server token information
s3.[id].sslboolWhether S3 server uses TLS
s3.[id].skip_insecure_verifyboolWhether to skip TLS certificate verification for S3 server

Kafka #

The Gateway supports using distributed Kafka as a backend queue. The related parameters are as follows.

NameTypeDescription
kafka.enabledboolWhether the Kafka module is enabled
kafka.defaultboolWhether the Kafka module is the default queue implementation
kafka.num_of_partitionintDefault number of partitions, default is 1
kafka.num_of_replicaintDefault number of replicas, default is 1
kafka.producer_batch_max_bytesintMaximum size of the batch to submit, default is 50 * 1024 * 1024
kafka.max_buffered_recordsintMaximum number of buffered request records, default is 10000
kafka.manual_flushingboolWhether to enable manual flushing, default is false
kafka.brokers[]stringServer address information
kafka.usernamestringUser information
kafka.passwordstringPassword information

Badger #

Badger is a lightweight disk-based KeyValue storage engine used by the Gateway to implement the KV module.

NameTypeDescription
badger.enabledboolWhether to enable the KV module implemented by Badger, default is true
badger.single_bucket_modeboolWhether Badger module uses single bucket mode, default is true
badger.sync_writesboolWhether Badger module uses synchronous writes, default is false
badger.mem_table_sizeint64Size of the in-memory table used by Badger module, default is 10 * 1024 * 1024 (10485760)
badger.value_log_file_sizeint64Size of Badger module’s log files, default is 1<<30 - 1 (1GB)
badger.value_log_max_entriesint64Maximum number of log entries for Badger module, default is 1000000
badger.value_thresholdint64Value threshold for Badger module’s log files, default is 1048576 (1MB)
badger.num_mem_tablesint64Number of in-memory tables for Badger module, default is 1
badger.num_level0_tablesint64Number of Level0 in-memory tables for Badger module, default is 1

Resource Limitations #

NameTypeDescription
resource_limit.cpu.max_num_of_cpusintMaximum number of CPU cores allowed to be used, Linux only with taskset command available.
resource_limit.cpu.affinity_liststringCPU affinity settings, e.g., 0,2,5 or 0-8, Linux only with taskset command available.
resource_limit.memory.max_in_bytesstringthe max size of Memory to use, soft limit only

Network Configuration #

Common network configurations.

NameTypeDescription
*.network.hoststringNetwork address listened to by the service, for example, 192.168.3.10
*.network.portintPort address listened to by the service, for example, 8000
*.network.bindingstringNetwork binding address listened to by the service, for example, 0.0.0.0:8000
*.network.publishstringExternal access address listened to by the service, for example, 192.168.3.10:8000
*.network.reuse_portboolWhether to reuse the network port for multi-process port sharing
*.network.skip_occupied_portboolWhether to automatically skip occupied ports

TLS Configuration #

Common TLS configurations.

NameTypeDescription
*.tls.enabledboolWhether TLS secure transmission is enabled or not, can auto generate cert files if not specified any cert files
*.tls.ca_filestringPath to the public CA cert of the TLS security certificate
*.tls.cert_filestringPath to the public key of the TLS security certificate
*.tls.key_filestringPath to the private key of the TLS security certificate
*.tls.skip_insecure_verifyboolWhether to ignore TLS certificate verification
*.tls.default_domainstringThe default domain for auto generated certs
*.tls.skip_domain_verifyboolWhether to skip domain verify or not
*.tls.client_session_cache_sizeintSet the max cache of ClientSessionState entries for TLS session resumption

API #

NameTypeDescription
api.enabledboolWhether to enable the API module, default is true
api.networkobjectNetworking config, please refer to common network configuration section
api.tlsobjectTLS config, please refer to common TLS configuration section
api.securityobjectSecurity config for API module
api.security.enabledboolWhether security is enabled or not
api.security.usernamestringThe username for security
api.security.passwordstringThe password for security
api.cors.allowed_origins[]stringThe list of origins a cross-domain request can be executed from
api.websocketobjectWebsocket config for API module
api.websocket.enabledobjectWhether websocket is enabled or not
api.websocket.permitted_hosts[]stringThe list of hosts that permitted to access the websocket service
api.websocket.skip_host_verifyboolWhether websocket skip verify the host or not

Misc #

NameTypeDescription
preference.pipeline_enabled_by_defaultmapWhether pipelines are enabled by default. If set to false, each pipeline must be explicitly configured with enabled set to true