Store Service Configuration

Introduction

The Infinite Scale Store service

Default Values

  • Store listens on port 9460 by default.

Configuration

Environment Variables

The store service is configured via the following environment variables:

  • latest

  • 2.0.0

Environment variables for the store service
Name Type Default Value Description

OCIS_TRACING_ENABLED
STORE_TRACING_ENABLED

bool

false

Activates tracing.

OCIS_TRACING_TYPE
STORE_TRACING_TYPE

string

The type of tracing. Defaults to "", which is the same as "jaeger". Allowed tracing types are "jaeger" and "" as of now.

OCIS_TRACING_ENDPOINT
STORE_TRACING_ENDPOINT

string

The endpoint of the tracing agent.

OCIS_TRACING_COLLECTOR
STORE_TRACING_COLLECTOR

string

The HTTP endpoint for sending spans directly to a collector, i.e. http://jaeger-collector:14268/api/traces. Only used if the tracing endpoint is unset.

OCIS_LOG_LEVEL
STORE_LOG_LEVEL

string

The log level. Valid values are: "panic", "fatal", "error", "warn", "info", "debug", "trace".

OCIS_LOG_PRETTY
STORE_LOG_PRETTY

bool

false

Activates pretty log output.

OCIS_LOG_COLOR
STORE_LOG_COLOR

bool

false

Activates colorized log output.

OCIS_LOG_FILE
STORE_LOG_FILE

string

The path to the log file. Activates logging to this file if set.

STORE_DEBUG_ADDR

string

127.0.0.1:9464

Bind address of the debug server, where metrics, health, config and debug endpoints will be exposed.

STORE_DEBUG_TOKEN

string

Token to secure the metrics endpoint.

STORE_DEBUG_PPROF

bool

false

Enables pprof, which can be used for profiling.

STORE_DEBUG_ZPAGES

bool

false

Enables zpages, which can be used for collecting and viewing in-memory traces.

STORE_GRPC_ADDR

string

127.0.0.1:9460

The bind address of the GRPC service.

STORE_DATA_PATH

string

~/.ocis/store

The directory where the filesystem storage will store ocis settings. If not definied, the root directory derives from $OCIS_BASE_DATA_PATH:/store.

Environment variables for the store service
Name Type Default Value Description

OCIS_TRACING_ENABLED
STORE_TRACING_ENABLED

bool

false

Activates tracing.

OCIS_TRACING_TYPE
STORE_TRACING_TYPE

string

The type of tracing. Defaults to "", which is the same as "jaeger". Allowed tracing types are "jaeger" and "" as of now.

OCIS_TRACING_ENDPOINT
STORE_TRACING_ENDPOINT

string

The endpoint of the tracing agent.

OCIS_TRACING_COLLECTOR
STORE_TRACING_COLLECTOR

string

The HTTP endpoint for sending spans directly to a collector, i.e. http://jaeger-collector:14268/api/traces. Only used if the tracing endpoint is unset.

OCIS_LOG_LEVEL
STORE_LOG_LEVEL

string

The log level. Valid values are: "panic", "fatal", "error", "warn", "info", "debug", "trace".

OCIS_LOG_PRETTY
STORE_LOG_PRETTY

bool

false

Activates pretty log output.

OCIS_LOG_COLOR
STORE_LOG_COLOR

bool

false

Activates colorized log output.

OCIS_LOG_FILE
STORE_LOG_FILE

string

The path to the log file. Activates logging to this file if set.

STORE_DEBUG_ADDR

string

127.0.0.1:9464

Bind address of the debug server, where metrics, health, config and debug endpoints will be exposed.

STORE_DEBUG_TOKEN

string

Token to secure the metrics endpoint.

STORE_DEBUG_PPROF

bool

false

Enables pprof, which can be used for profiling.

STORE_DEBUG_ZPAGES

bool

false

Enables zpages, which can be used for collecting and viewing in-memory traces.

STORE_GRPC_ADDR

string

127.0.0.1:9460

The bind address of the GRPC service.

OCIS_GRPC_TLS_ENABLED

bool

false

Activates TLS for the grpc based services using the server certifcate and key configured via OCIS_GRPC_TLS_CERTIFICATE and OCIS_GRPC_TLS_KEY. If OCIS_GRPC_TLS_CERTIFICATE is not set a temporary server certificate is generated - to be used with OCIS_GRPC_CLIENT_TLS_MODE=insecure.

OCIS_GRPC_TLS_CERTIFICATE

string

Path/File name of the TLS server certificate (in PEM format) for the grpc services.

OCIS_GRPC_TLS_KEY

string

Path/File name for the TLS certificate key (in PEM format) for the server certificate to use for the grpc services.

OCIS_GRPC_CLIENT_TLS_MODE

string

TLS mode for grpc connection to the go-micro based grpc services. Possible values are 'off', 'insecure' and 'on'. 'off': disables transport security for the clients. 'insecure' allows to use transport security, but disables certificate verification (to be used with the autogenerated self-signed certificates). 'on' enables transport security, including server ceritificate verification.

OCIS_GRPC_CLIENT_TLS_CACERT

string

Path/File name for the root CA certificate (in PEM format) used to validate TLS server certificates of the go-micro based grpc services.

STORE_DATA_PATH

string

~/.ocis/store

The directory where the filesystem storage will store ocis settings. If not definied, the root directory derives from $OCIS_BASE_DATA_PATH:/store.

YAML Example

Note that the filename shown below has been chosen on purpose.
See the Configuration File Naming for details when setting up your own configuration.

  • latest

  • 2.0.0

# Autogenerated
# Filename: store-config-example.yaml

tracing:
  enabled: false
  type: ""
  endpoint: ""
  collector: ""
log:
  level: ""
  pretty: false
  color: false
  file: ""
debug:
  addr: 127.0.0.1:9464
  token: ""
  pprof: false
  zpages: false
grpc:
  addr: 127.0.0.1:9460
  tls: null
grpc_client_tls: null
data_path: ~/.ocis/store
# Autogenerated
# Filename: store-config-example.yaml

tracing:
  enabled: false
  type: ""
  endpoint: ""
  collector: ""
log:
  level: ""
  pretty: false
  color: false
  file: ""
debug:
  addr: 127.0.0.1:9464
  token: ""
  pprof: false
  zpages: false
grpc:
  addr: 127.0.0.1:9460
  tls:
    enabled: false
    cert: ""
    key: ""
grpc_client_tls:
  mode: ""
  cacert: ""
data_path: ~/.ocis/store