Skip to main content

Default configuration

The following is the default configuration. It does not include all possible configuration options, since some can be conflicting. Take a look at the configuration reference below for a full list of options. Note that configuration defaults might change across server releases, if you want to make sure you use stable values, use an explicit configuration file and pass the path via --config-path=<PATH> as described above. Important changes in recent versions:
  • Restate now listens on both TCP and Unix sockets by default (listen-mode = "all"). Unix sockets are created under restate-data/*.sock.
  • Advertised addresses are automatically detected based on your network configuration. You no longer need to explicitly set advertised-address for most deployments.
  • The metadata-client.addresses field is now optional for single-node setups.
restate.toml

Configuration Reference

Every option below carries two badges: toml: is the key to write in your configuration file, and env: is the environment variable that overrides it. Both are given in full, so you do not have to reconstruct the path from the surrounding sections. Click either badge to copy it.
object
toml: [admin]
Admin server options:
string | null
toml: advertised-address
env: RESTATE_ADVERTISED_ADDRESS
Address that other nodes will use to connect to this service.The full prefix that will be used to advertise this service publicly. For example, if this is set to https://my-host then others will use this as base URL to connect to this service.If unset, the advertised address will be inferred from public address of this node or it’ll use the value supplied in advertised-host if set.advertised address: An externally accessible URI address for tokio-console-server. This can be set to unix:restate-data/tokio.sock to advertise the automatically created unix-socket instead of using tcp if neededExamples: “http//127.0.0.1:6669/” or “https://my-host/” or “unix:/data/restate-data/tokio.sock”
string | null
toml: advertised-host
env: RESTATE_ADVERTISED_HOST
Hostname to advertise for this service
boolean
default:"true"
toml: auto-provision
env: RESTATE_AUTO_PROVISION
Auto cluster provisioning: If true, then this node is allowed to automatically provision as a new cluster. This node must have an admin role and a new nodes configuration will be created that includes this node.auto-provision is allowed by default in development mode and is disabled if restate-server runs with --production flag to prevent cluster nodes from forming their own clusters, rather than forming a single cluster.Use restatectl to provision the cluster/node if automatic provisioning is disabled.This can also be explicitly disabled by setting this value to false.Default: true
string | null
default:"null"
toml: base-dir
env: RESTATE_BASE_DIR
The working directory which this Restate node should use for relative paths. The default is restate-data under the current working directory.
object
toml: [bifrost]
Bifrost options:
string | null
toml: bind-address
env: RESTATE_BIND_ADDRESS
The combination of bind-ip and bind-port that will be used to bindThis has precedence over bind-ip and bind-portBind address: The local network address to bind on for tokio-console-server. This service uses default port 6669 and will create a unix-socket file at the data directory under the name tokio.sockExamples: ”[::]:6669” or “0.0.0.0:6669” or “127.0.0.1:6669”
string | null
format: ip
toml: bind-ip
env: RESTATE_BIND_IP
Local interface IP address to listen on
integer | null
format: uint16
maximum: 65535
toml: bind-port
env: RESTATE_BIND_PORT
Network port to listen on
string
default:"localcluster"
toml: cluster-name
env: RESTATE_CLUSTER_NAME
Cluster name: A unique identifier for the cluster. All nodes in the same cluster should have the same.
string
minLength: 1
toml: default-idempotency-retention
env: RESTATE_DEFAULT_IDEMPOTENCY_RETENTION
Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
string
minLength: 1
toml: default-journal-retention
env: RESTATE_DEFAULT_JOURNAL_RETENTION
Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
integer
default:"24"
format: uint16
maximum: 65535
toml: default-num-partitions
env: RESTATE_DEFAULT_NUM_PARTITIONS
Partitions: Number of partitions that will be provisioned during initial cluster provisioning. partitions are the logical shards used to process messages.Cannot be higher than 65535 (You should almost never need as many partitions anyway)NOTE 1: This config entry only impacts the initial number of partitions, the value of this entry is ignored for provisioned nodes/clusters.NOTE 2: This will be renamed to default-num-partitions by default as of v1.3+Default: 24
string
default:"1"
toml: default-replication
env: RESTATE_DEFAULT_REPLICATION
Default replication factor: Configures the global default replication factor to be used by the the system.Note that this value only impacts the cluster initial provisioning and will not be respected after the cluster has been provisioned.To update existing clusters use the restatectl utility.
object
toml: [default-retry-policy]
Default retry policy: The default retry policy to use for invocations.The retry policy can be customized on a service/handler basis, using the respective SDK APIs. Check https://docs.restate.dev/services/configuration#retries for more details.
integer | null
default:"null"
format: uint32
toml: default-thread-pool-size
env: RESTATE_DEFAULT_THREAD_POOL_SIZE
Default async runtime thread pool: Size of the default thread pool used to perform internal tasks. If not set, it defaults to the number of CPU cores.
string | null
toml: default-thread-stack-size
env: RESTATE_DEFAULT_THREAD_STACK_SIZE
Default async runtime thread stack size: Stack size of the worker threads of the default async runtime. If not set, it defaults to tokio’s default stack size.Since v1.7.1Non-zero human-readable bytes
string
minLength: 1
toml: default-workflow-completion-retention
env: RESTATE_DEFAULT_WORKFLOW_COMPLETION_RETENTION
Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
boolean
toml: disable-config-sql-table
env: RESTATE_DISABLE_CONFIG_SQL_TABLE
Disable the config table: Disables the config SQL table, which exposes the node’s running configuration via SQL queries.Since v1.7.1
boolean
default:"false"
toml: disable-prometheus
env: RESTATE_DISABLE_PROMETHEUS
Disable prometheus metric recording and reporting. Default is false.
boolean
default:"false"
toml: disable-telemetry
env: RESTATE_DISABLE_TELEMETRY
Disable telemetry: Restate uses Scarf to collect anonymous usage data to help us understand how the software is being used. You can set this flag to true to disable this collection. It can also be set with the environment variable DO_NOT_TRACK=1.
integer | null
default:"null"
format: uint32
toml: force-node-id
env: RESTATE_FORCE_NODE_ID
If set, the node insists on acquiring this node ID.
integer
default:"10"
format: uint32
minimum: 1
toml: gossip-extras-exchange-frequency
env: RESTATE_GOSSIP_EXTRAS_EXCHANGE_FREQUENCY
Gossip extras exchange frequency: In addition to basic health/liveness information, the gossip protocol is used to exchange extra information about the roles hosted by this node. For instance, which partitions are currently running, their configuration versions, and the durable LSN of the corresponding partition databases. This information is sent every Nth gossip message. This setting controls the frequency of this exchange. For instance, 10 means that every 10th gossip message will contain the extra information about.
integer
default:"10"
format: uint32
minimum: 1
toml: gossip-failure-threshold
env: RESTATE_GOSSIP_FAILURE_THRESHOLD
Gossip failure threshold: Specifies how many gossip intervals of inactivity need to pass before considering a node as dead.
integer
default:"3"
format: uint32
minimum: 1
toml: gossip-fd-stability-threshold
env: RESTATE_GOSSIP_FD_STABILITY_THRESHOLD
Gossips before failure detector is stable:
integer
default:"30"
format: uint32
minimum: 1
toml: gossip-loneliness-threshold
env: RESTATE_GOSSIP_LONELINESS_THRESHOLD
Gossip loneliness threshold: How many intervals need to pass without receiving any gossip messages before considering this node as potentially isolated/dead. This threshold is used in the case where the node can still send gossip messages but did not receive any. This can rarely happen in asymmetric network partitions.In this case, the node will advertise itself as dead in the gossip messages it sends out.Note: this threshold does not apply to a cluster that’s configured with a single node.
integer
default:"2"
format: uint32
minimum: 1
toml: gossip-num-peers
env: RESTATE_GOSSIP_NUM_PEERS
Number of peers to gossip: On every gossip interval, how many peers each node attempts to gossip with. The default is optimized for small clusters (less than 5 nodes). On larger clusters, if gossip overhead is noticeable, consider reducing this value to 1.
string
default:"5s"
minLength: 1
toml: gossip-suspect-interval
env: RESTATE_GOSSIP_SUSPECT_INTERVAL
Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
string
default:"100ms"
minLength: 1
toml: gossip-tick-interval
env: RESTATE_GOSSIP_TICK_INTERVAL
Non-zero human-readable duration: Non-zero duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D”
string
default:"1s"
minLength: 1
toml: gossip-time-skew-threshold
env: RESTATE_GOSSIP_TIME_SKEW_THRESHOLD
Non-zero human-readable duration: Non-zero duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D”
string
default:"0s"
minLength: 1
toml: hlc-max-drift
env: RESTATE_HLC_MAX_DRIFT
Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
object
toml: [ingress]
Ingress options:
string
default:"5m"
minLength: 1
toml: initialization-timeout
env: RESTATE_INITIALIZATION_TIMEOUT
Non-zero human-readable duration: Non-zero duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D”
oneOf | null
toml: listen-mode
env: RESTATE_LISTEN_MODE
Listen on unix-sockets, TCP sockets, or both.The default is to listen on both.
  • "unix" : Exclusively listen on unix domain sockets
If set, all services will listen exclusively on unix sockets, each service will create a socket file under the data directory.
  • "tcp" : Exclusively listen on TCP sockets
  • "all" : [default] Listen on both Unix and TCP sockets
string
toml: location
env: RESTATE_LOCATION
Node Location: Setting the location allows Restate to form a tree-like cluster topology. The value is written in the format of “region[.zone]” to assign this node to a specific region, or to a zone within a region.The value of region and zone is arbitrary but whitespace and . are disallowed.NOTE: It’s strongly recommended to not change the node’s location string after its initial registration. Changing the location may result in data loss or data inconsistency if log-server is enabled on this node.When this value is not set, the node is considered to be in the default location. The default location means that the node is not assigned to any specific region or zone.Examples
  • us-west — the node is in the us-west region.
  • us-west.a1 — the node is in the us-west region and in the a1 zone.
  • “ — [default] the node is in the default location
boolean
default:"false"
toml: log-disable-ansi-codes
env: RESTATE_LOG_DISABLE_ANSI_CODES
Disable ANSI in log output: Disable ANSI terminal codes for logs. This is useful when the log collector doesn’t support processing ANSI terminal codes.
string
default:"warn,restate=info"
toml: log-filter
env: RESTATE_LOG_FILTER
Logging Filter: Log filter configuration. Can be overridden by the RUST_LOG environment variable. Check the RUST_LOG documentation for more details how to configure it.
default:"pretty"
toml: log-format
env: RESTATE_LOG_FORMAT
Logging format: Format to use when logging.
  • Option 1: Pretty : Enables verbose logging. Not recommended in production.
  • Option 2: Compact : Enables compact logging.
  • Option 3: Json : Enables json logging. You can use a json log collector to ingest these logs and further process them.
object
toml: [log-server]
Log server options: Configuration is only used on nodes running with log-server role.
string | null
toml: max-idempotency-retention
env: RESTATE_MAX_IDEMPOTENCY_RETENTION
Maximum idempotency retention duration that can be configured. Applied when ingesting the invocation: values higher than this limit are clamped down to it.Unset means no limit.Since v1.7.0Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
string | null
toml: max-journal-retention
env: RESTATE_MAX_JOURNAL_RETENTION
Maximum journal retention duration that can be configured. Applied when ingesting the invocation: values higher than this limit are clamped down to it.Unset means no limit.Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
integer | null
format: uint
minimum: 1
toml: max-retry-policy-max-attempts
env: RESTATE_MAX_RETRY_POLICY_MAX_ATTEMPTS
Max configurable value for retry policy max attempts: Maximum max attempts configurable in an invocation retry policy. When discovering a service deployment with configured retry policies, or when modifying the invocation retry policy using the Admin API, the given value will be clamped.None means no limit, that is infinite retries is enabled.
string | null
toml: max-workflow-completion-retention
env: RESTATE_MAX_WORKFLOW_COMPLETION_RETENTION
Maximum workflow completion retention duration that can be configured. Applied when ingesting the invocation: values higher than this limit are clamped down to it.Unset means no limit.Since v1.7.0Human-readable duration: Duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D” or “0”
object
toml: [metadata-client]
Metadata client options: The metadata client type to store metadata
string
default:"3s"
minLength: 1
toml: metadata-fetch-from-peer-timeout
env: RESTATE_METADATA_FETCH_FROM_PEER_TIMEOUT
Non-zero human-readable duration: Non-zero duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D”
object
toml: [metadata-server]
Metadata store options:
string
default:"10s"
minLength: 1
toml: metadata-update-interval
env: RESTATE_METADATA_UPDATE_INTERVAL
Non-zero human-readable duration: Non-zero duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D”
toml: [network-error-retry-policy]
Retry policy: Definition of a retry policy
object
toml: [networking]
Networking options: Common network configuration options for communicating with Restate cluster nodes. Note that similar keys are present in other config sections, such as in Service Client options.
string | null
default:"null"
toml: node-name
env: RESTATE_NODE_NAME
Node Name: Unique name for this node in the cluster. The node must not change unless it’s started with empty local store. It defaults to the node’s hostname.
string | null
toml: rocksdb-block-size
env: RESTATE_ROCKSDB_BLOCK_SIZE
RocksDB block size: Uncompressed block sizeDefault: 64KiBNon-zero human-readable bytes
string | null
toml: rocksdb-compaction-readahead-size
env: RESTATE_ROCKSDB_COMPACTION_READAHEAD_SIZE
RocksDB compaction readahead size in bytes: If non-zero, we perform bigger reads when doing compaction. If you’re running RocksDB on spinning disks, you should set this to at least 2MB. That way RocksDB’s compaction is doing sequential instead of random reads.Non-zero human-readable bytes
boolean | null
toml: rocksdb-disable-direct-io-for-flush-and-compactions
env: RESTATE_ROCKSDB_DISABLE_DIRECT_IO_FOR_FLUSH_AND_COMPACTIONS
Disable Direct IO for flush and compactions: Use O_DIRECT for writes in background flush and compactions.
boolean | null
toml: rocksdb-disable-direct-io-for-reads
env: RESTATE_ROCKSDB_DISABLE_DIRECT_IO_FOR_READS
Disable Direct IO for reads: Files will be opened in “direct I/O” mode which means that data r/w from the disk will not be cached or buffered. The hardware buffer of the devices may however still be used. Memory mapped files are not impacted by these parameters.
boolean | null
toml: rocksdb-disable-l0-l1-compression
env: RESTATE_ROCKSDB_DISABLE_L0_L1_COMPRESSION
Disable L0/L1 SST compression: When false (the default), L0 and L1 SST files are compressed with Lz4. Higher levels (L2+) always use Zstd regardless of this setting. Set to true to disable compression for L0/L1, which can improve write throughput at the cost of higher disk usage since these files are short-lived and frequently compacted.Default: false (L0/L1 compression enabled)
boolean | null
toml: rocksdb-disable-statistics
env: RESTATE_ROCKSDB_DISABLE_STATISTICS
Disable rocksdb statistics collectionDefault: False (statistics enabled)
boolean | null
toml: rocksdb-disable-wal-compression
env: RESTATE_ROCKSDB_DISABLE_WAL_COMPRESSION
Disable WAL compression: When false (the default), the Write-Ahead Log is compressed with Zstd. Set to true to disable WAL compression. Only applies when WAL is enabled.Default: false (WAL compression enabled)
integer | null
format: uint32
minimum: 1
toml: rocksdb-high-priority-threads
env: RESTATE_ROCKSDB_HIGH_PRIORITY_THREADS
Rocksdb High Priority Background Threads: The number of threads to reserve to high priority Rocksdb background tasks.Defaults to 1/4 of the number of CPU cores.Since v1.7.0 (renamed from rocksdb-high-priority-bg-threads)
integer | null
default:"null"
format: uint
toml: rocksdb-log-keep-file-num
env: RESTATE_ROCKSDB_LOG_KEEP_FILE_NUM
RocksDB log keep file num: Number of info LOG files to keepDefault: 1
string | null
default:"null"
toml: rocksdb-log-level
env: RESTATE_ROCKSDB_LOG_LEVEL
RocksDB log level: Verbosity of the LOG.Default: “error”Verbosity of the LOG.
string | null
default:"null"
toml: rocksdb-log-max-file-size
env: RESTATE_ROCKSDB_LOG_MAX_FILE_SIZE
RocksDB log max file size: Max size of info LOG fileDefault: 64MBNon-zero human-readable bytes
integer | null
format: uint32
minimum: 1
toml: rocksdb-low-priority-threads
env: RESTATE_ROCKSDB_LOW_PRIORITY_THREADS
Rocksdb Low Priority Background Threads: The number of threads to reserve to lower priority Rocksdb background tasks.Defaults to the remaining CPU cores not used by high-priority rocksdb threadsSince v1.7.0 (renamed from rocksdb-bg-threads)
string
default:"7.0 GiB"
minLength: 1
toml: rocksdb-max-write-rate-per-second
env: RESTATE_ROCKSDB_MAX_WRITE_RATE_PER_SECOND
Non-zero human-readable bytes
default:"enable-count"
toml: rocksdb-perf-level
env: RESTATE_ROCKSDB_PERF_LEVEL
Rocksdb performance statistics level: Defines the level of PerfContext used internally by rocksdb. Default is enable-count which should be sufficient for most users. Note that higher levels incur a CPU cost and might slow down the critical path.
  • "disable" : Disable perf stats
  • "enable-count" : Enables only count stats
  • "enable-time-except-for-mutex" : Count stats and enable time stats except for mutexes
  • "enable-time-and-c-p-u-time-except-for-mutex" : Other than time, also measure CPU time counters. Still don’t measure time (neither wall time nor CPU time) for mutexes
  • "enable-time" : Enables count and time stats
oneOf | null
toml: rocksdb-statistics-level
env: RESTATE_ROCKSDB_STATISTICS_LEVEL
RocksDB statistics level: StatsLevel can be used to reduce statistics overhead by skipping certain types of stats in the stats collection process.Default: “except-detailed-timers”
  • "disable-all" : Disable all metrics
  • "except-histogram-or-timers" : Disable timer stats, and skip histogram stats
  • "except-timers" : Skip timer stats
  • "except-detailed-timers" : Collect all stats except time inside mutex lock AND time spent on compression.
  • "except-time-for-mutex" : Collect all stats except the counters requiring to get time inside the mutex lock.
  • "all" : Collect all stats, including measuring duration of mutex operations. If getting time is expensive on the platform to run, it can reduce scalability to more threads, especially for writes.
string
default:"2.0 GiB"
minLength: 1
toml: rocksdb-total-memory-size
env: RESTATE_ROCKSDB_TOTAL_MEMORY_SIZE
Non-zero human-readable bytes
number
default:"0.8500000238418579"
format: float
toml: rocksdb-total-memtables-ratio
env: RESTATE_ROCKSDB_TOTAL_MEMTABLES_RATIO
Rocksdb total memtable size ratio: The memory size used across all memtables (ratio between 0.1 to 1.0). This limits how much memory memtables can eat up from the value in rocksdb-total-memory-limit.The remaining memory will be dedicated to the block cache.This value will be sanitized to 1.0 if outside the valid bounds.
array
toml: roles
env: RESTATE_ROLES
Defines the roles which this Restate node should run, by default the node starts with all roles.
string
default:"1m"
minLength: 1
toml: shutdown-timeout
env: RESTATE_SHUTDOWN_TIMEOUT
Non-zero human-readable duration: Non-zero duration string in either jiff human friendly or ISO8601 format. Check https://docs.rs/jiff/latest/jiff/struct.Span.html#parsing-and-printing for more details.Examples: “10 hours” or “5 days” or “5d” or “1h 4m” or “P40D”
integer | null
format: uint
minimum: 1
toml: storage-high-priority-bg-threads
env: RESTATE_STORAGE_HIGH_PRIORITY_BG_THREADS
Storage high priority thread poolThis configures the restate-managed storage thread pool for performing high-priority or latency-sensitive storage tasks when the IO operation cannot be performed on in-memory caches.
integer | null
format: uint
minimum: 1
toml: storage-low-priority-bg-threads
env: RESTATE_STORAGE_LOW_PRIORITY_BG_THREADS
Storage low priority thread poolThis configures the restate-managed storage thread pool for performing low-priority or latency-insensitive storage tasks.
string
toml: tokio-console-bind-address
env: RESTATE_TOKIO_CONSOLE_BIND_ADDRESS
Address to bind for the tokio-console tracing subscriber. If unset and restate-server is built with tokio-console support, it’ll listen on [::]:6669.
string | null
toml: tracing-endpoint
env: RESTATE_TRACING_ENDPOINT
Tracing Endpoint: This is a shortcut to set both [Self::tracing_runtime_endpoint], and [Self::tracing_services_endpoint].Specify the tracing endpoint to send runtime traces to. Traces will be exported using OTLP gRPC through opentelemetry_otlp.To configure the sampling, please refer to the opentelemetry autoconfigure docs.
string
required
toml: tracing-filter
env: RESTATE_TRACING_FILTER
Tracing Filter: Distributed tracing exporter filter. Check the RUST_LOG documentation for more details how to configure it.
object
toml: [tracing-headers]
env: RESTATE_TRACING_HEADERS
Additional tracing headers: Specify additional headers you want the system to send to the tracing endpoint (e.g. authentication headers).
string | null
toml: tracing-json-path
env: RESTATE_TRACING_JSON_PATH
Distributed Tracing JSON Export Path: If set, an exporter will be configured to write traces to files using the Jaeger JSON format. Each trace file will start with the trace prefix.If unset, no traces will be written to file.It can be used to export traces in a structured format without configuring a Jaeger agent.To inspect the traces, open the Jaeger UI and use the Upload JSON feature to load and inspect them.
string | null
toml: tracing-runtime-endpoint
env: RESTATE_TRACING_RUNTIME_ENDPOINT
Runtime Tracing Endpoint: Overrides [Self::tracing_endpoint] for runtime tracesSpecify the tracing endpoint to send runtime traces to. Traces will be exported using OTLP gRPC through opentelemetry_otlp.To configure the sampling, please refer to the opentelemetry autoconfigure docs.
string | null
toml: tracing-services-endpoint
env: RESTATE_TRACING_SERVICES_ENDPOINT
Services Tracing Endpoint: Overrides [Self::tracing_endpoint] for services tracesSpecify the tracing endpoint to send services traces to. Traces will be exported using OTLP gRPC through opentelemetry_otlp.To configure the sampling, please refer to the opentelemetry autoconfigure docs.
boolean | null
toml: use-random-ports
env: RESTATE_USE_RANDOM_PORTS
Use random ports instead of the default port
object
toml: [worker]
Worker options: