go.temporal.io/server/common/config/config.go
879 LOC · 27 covered · 852 uncovered · 9 ranges · 65 concepts · 4 introducers · 22 tests
File neighbourhood
The centred file is linked to every concept that introduces one of its ranges, every test that runs code from the file, and the gray connector concepts standing between those tests and the file's own introducer concepts. Undirected links join concepts to every file where they introduce source and concepts to the tests they introduce; arrows show specialization between the displayed concepts and bridge only concepts omitted from this view. Concept colors match the source ranges below; connector concepts have no source color and are shown in gray.
Focused file, its introducer and connector concepts, their introduced files, and tests that run code from the file
In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the related-file, concept, and source links on this page.
Graph controls are ready.
Interactive rendering requires JavaScript and WebGL. Use the related-file, concept, and source links on this page while the interactive map is unavailable.
package config
import (
"bytes"
"fmt"
"math"
"strings"
"time"
"github.com/jmoiron/sqlx"
"go.temporal.io/server/common/auth"
"go.temporal.io/server/common/cluster"
"go.temporal.io/server/common/dynamicconfig"
"go.temporal.io/server/common/log"
"go.temporal.io/server/common/masker"
"go.temporal.io/server/common/metrics"
"go.temporal.io/server/common/persistence/visibility/store/elasticsearch/client"
"go.temporal.io/server/common/primitives"
"go.temporal.io/server/common/telemetry"
"google.golang.org/grpc/keepalive"
"gopkg.in/yaml.v3"
)
const (
infinity = time.Duration(math.MaxInt64)
)
type (
// Config contains the configuration for a set of temporal services
Config struct {
// Global is process-wide service-related configuration
Global Global `yaml:"global"`
// Persistence contains the configuration for temporal datastores
Persistence Persistence `yaml:"persistence"`
// Log is the logging config
Log log.Config `yaml:"log"`
// ClusterMetadata is the config containing all valid clusters and active cluster
ClusterMetadata *cluster.Config `yaml:"clusterMetadata"`
// DCRedirectionPolicy contains the frontend datacenter redirection policy
DCRedirectionPolicy DCRedirectionPolicy `yaml:"dcRedirectionPolicy"`
// Services is a map of service name to service config items
Services map[string]Service `yaml:"services"`
// Archival is the config for archival
Archival Archival `yaml:"archival"`
// PublicClient is config for connecting to temporal frontend
PublicClient PublicClient `yaml:"publicClient"`
// DynamicConfigClient is the config for setting up the file based dynamic config client
// Filepath should be relative to the root directory
DynamicConfigClient *dynamicconfig.FileBasedClientConfig `yaml:"dynamicConfigClient"`
// NamespaceDefaults is the default config for every namespace
NamespaceDefaults NamespaceDefaults `yaml:"namespaceDefaults"`
// ExporterConfig allows the specification of process-wide OTEL exporters
ExporterConfig telemetry.ExportConfig `yaml:"otel"`
// Visibility related config
Visibility Visibility `yaml:"visibility"`
}
// Service contains the service specific config items
Service struct {
// RPC is the rpc configuration
RPC RPC `yaml:"rpc"`
}
// PProf contains the config items for the pprof utility
PProf struct {
// Port is the port on which the PProf will bind to
Port int `yaml:"port"`
// Host defaults to `localhost` but can be overriden
// for instance in the case of dual stack IPv4/IPv6
Host string `yaml:"host"`
}
// RPC contains the rpc config items
RPC struct {
// GRPCPort is the port on which gRPC will listen
GRPCPort int `yaml:"grpcPort"`
// Port used for membership listener
MembershipPort int `yaml:"membershipPort"`
// BindOnLocalHost is true if localhost is the bind address
// if neither BindOnLocalHost nor BindOnIP are set then an
// an attempt to discover an address is made
BindOnLocalHost bool `yaml:"bindOnLocalHost"`
// BindOnIP can be used to bind service on specific ip (eg. `0.0.0.0` or `::`)
// check net.ParseIP for supported syntax
// mutually exclusive with `BindOnLocalHost` option
BindOnIP string `yaml:"bindOnIP"`
// HTTPPort is the port on which HTTP will listen. If unset/0, HTTP will be
// disabled. This setting only applies to the frontend service.
HTTPPort int `yaml:"httpPort"`
// HTTPAdditionalForwardedHeaders adds additional headers to the default set
// forwarded from HTTP to gRPC. Any value with a trailing * will match the prefix before
// the asterisk (eg. `x-internal-*`)
HTTPAdditionalForwardedHeaders []string `yaml:"httpAdditionalForwardedHeaders"`
// KeepAliveServerConfig keep alive configuration for the server
KeepAliveServerConfig KeepAliveServerConfig `yaml:"keepAliveServerConfig"`
// ClientConnectionConfig defines the connection config used by other services
// when they create a gRPC client connection to this service.
ClientConnectionConfig ClientConnectionConfig `yaml:"clientConnectionConfig"`
}
KeepAliveServerParameters struct {
MaxConnectionIdle *time.Duration `yaml:"maxConnectionIdle"`
MaxConnectionAge *time.Duration `yaml:"maxConnectionAge"`
MaxConnectionAgeGrace *time.Duration `yaml:"maxConnectionAgeGrace"`
Time *time.Duration `yaml:"keepAliveTime"`
Timeout *time.Duration `yaml:"keepAliveTimeout"`
}
KeepAliveClientParameters struct {
Time *time.Duration `yaml:"keepAliveTime"`
Timeout *time.Duration `yaml:"keepAliveTimeout"`
PermitWithoutStream *bool `yaml:"keepAlivePermitWithoutStream"`
}
ClientConnectionConfig struct {
KeepAliveClientConfig *KeepAliveClientParameters `yaml:"keepAliveClientParameters"`
}
KeepAliveServerEnforcementPolicy struct {
MinTime *time.Duration `yaml:"minTime"`
PermitWithoutStream *bool `yaml:"permitWithoutStream"`
}
KeepAliveServerConfig struct {
KeepAliveServerParameters *KeepAliveServerParameters `yaml:"keepAliveServerParameters"`
KeepAliveEnforcementPolicy *KeepAliveServerEnforcementPolicy `yaml:"keepAliveEnforcementPolicy"`
}
// Global contains config items that apply process-wide to all services
Global struct {
// Membership is the ringpop related configuration
Membership Membership `yaml:"membership"`
// PProf is the PProf configuration
PProf PProf `yaml:"pprof"`
// TLS controls the communication encryption configuration
TLS RootTLS `yaml:"tls"`
// Metrics is the metrics subsystem configuration
Metrics *metrics.Config `yaml:"metrics"`
// Settings for authentication and authorization
Authorization Authorization `yaml:"authorization"`
}
// RootTLS contains all TLS settings for the Temporal server
RootTLS struct {
// Internode controls backend service (history, matching, internal-frontend)
// communication TLS settings.
Internode GroupTLS `yaml:"internode"`
// Frontend controls frontend server TLS settings. To control system worker -> frontend
// TLS, use the SystemWorker field. (Frontend.Client is accepted for backwards
// compatibility.)
Frontend GroupTLS `yaml:"frontend"`
// SystemWorker controls TLS setting for System Workers connecting to Frontend.
SystemWorker WorkerTLS `yaml:"systemWorker"`
// RemoteFrontendClients controls TLS setting for talking to remote cluster.
RemoteClusters map[string]GroupTLS `yaml:"remoteClusters"`
// ExpirationChecks defines settings for periodic checks for expiration of certificates
ExpirationChecks CertExpirationValidation `yaml:"expirationChecks"`
// Interval between refreshes of certificates loaded from files
RefreshInterval time.Duration `yaml:"refreshInterval"`
}
// GroupTLS contains an instance client and server TLS settings
GroupTLS struct {
// Client handles client TLS settings
Client ClientTLS `yaml:"client"`
// Server handles the server (listener) TLS settings
Server ServerTLS `yaml:"server"`
// PerHostOverrides contains per-hostname TLS settings that
// are used for external clients connecting to the Temporal Cluster on that
// specific hostname. Host names are case insensitive. Optional. If not present,
// uses configuration supplied by Server field.
PerHostOverrides map[string]ServerTLS `yaml:"hostOverrides"`
}
// ServerTLS contains items to load server TLS configuration
ServerTLS struct {
// The path to the file containing the PEM-encoded public key of the certificate to use.
CertFile string `yaml:"certFile"`
// The path to the file containing the PEM-encoded private key of the certificate to use.
KeyFile string `yaml:"keyFile"`
// A list of paths to files containing the PEM-encoded public key of the Certificate Authorities you wish to trust for client authentication.
// This value is ignored if `requireClientAuth` is not enabled. Cannot specify both ClientCAFiles and ClientCAData
ClientCAFiles []string `yaml:"clientCaFiles"`
// Base64 equivalents of the above artifacts.
// You cannot specify both a Data and a File for the same artifact (e.g. setting CertFile and CertData)
CertData string `yaml:"certData"`
KeyData string `yaml:"keyData"`
ClientCAData []string `yaml:"clientCaData"`
// Requires clients to authenticate with a certificate when connecting, otherwise known as mutual TLS.
RequireClientAuth bool `yaml:"requireClientAuth"`
}
// ClientTLS contains TLS configuration for clients within the Temporal Cluster to connect to Temporal nodes.
ClientTLS struct {
// DNS name to validate against for server to server connections.
// Required when TLS is enabled in a multi-host cluster.
// This name should be referenced by the certificate specified in the ServerTLS section.
ServerName string `yaml:"serverName"`
// If you want to verify the temporal server hostname and server cert, then you should turn this on
// This option is basically equivalent to InSecureSkipVerify
// See InSecureSkipVerify in http://golang.org/pkg/crypto/tls/ for more info
DisableHostVerification bool `yaml:"disableHostVerification"`
// Optional - A list of paths to files containing the PEM-encoded public key of the Certificate Authorities that are used to validate the server's TLS certificate
// You cannot specify both RootCAFiles and RootCAData
RootCAFiles []string `yaml:"rootCaFiles"`
// Optional - A list of base64 PEM-encoded public keys of the Certificate Authorities that are used to validate the server's TLS certificate.
// You cannot specify both RootCAFiles and RootCAData
RootCAData []string `yaml:"rootCaData"`
// Optional - Use TLS even is neither client certificate nor root CAs are configured
// This is for non-mTLS cases when client validates serve against a set of trusted CA certificates configured in the environment
ForceTLS bool `yaml:"forceTLS"`
}
// WorkerTLS contains TLS configuration for system workers within the Temporal Cluster to connect to Temporal frontend.
WorkerTLS struct {
// The path to the file containing the PEM-encoded public key of the client certificate to use by system workers.
CertFile string `yaml:"certFile"`
// The path to the file containing the PEM-encoded private key of the client certificate to use by system workers.
KeyFile string `yaml:"keyFile"`
// Base64 equivalents of the above artifacts.
// You cannot specify both a Data and a File for the same artifact (e.g. setting CertFile and CertData)
CertData string `yaml:"certData"`
KeyData string `yaml:"keyData"`
// Client TLS settings for system workers
Client ClientTLS `yaml:"client"`
}
// CertExpirationValidation contains settings for periodic checks of TLS certificate expiration
CertExpirationValidation struct {
// Log warnings for certificates expiring during this time window from now
WarningWindow time.Duration `yaml:"warningWindow"`
// Log error for certificates expiring during this time window from now
ErrorWindow time.Duration `yaml:"errorWindow"`
// Interval between checks for certificate expiration
CheckInterval time.Duration `yaml:"checkInterval"`
}
// Membership contains config items related to the membership layer of temporal
Membership struct {
// MaxJoinDuration is the max wait time to join the gossip ring
MaxJoinDuration time.Duration `yaml:"maxJoinDuration"`
// BroadcastAddress is used as the address that is communicated to remote nodes to connect on.
// This is generally used when BindOnIP would be the same across several nodes (ie: `0.0.0.0` or `::`)
// and for nat traversal scenarios. Check net.ParseIP for supported syntax
BroadcastAddress string `yaml:"broadcastAddress"`
}
// Persistence contains the configuration for data store / persistence layer
Persistence struct {
// DefaultStore is the name of the default data store to use
DefaultStore string `yaml:"defaultStore" validate:"nonzero"`
// VisibilityStore is the name of the datastore to be used for visibility records
VisibilityStore string `yaml:"visibilityStore"`
// SecondaryVisibilityStore is the name of the secondary datastore to be used for visibility records
SecondaryVisibilityStore string `yaml:"secondaryVisibilityStore"`
// NumHistoryShards is the desired number of history shards. This config doesn't
// belong here, needs refactoring
NumHistoryShards int32 `yaml:"numHistoryShards" validate:"nonzero"`
// DataStores contains the configuration for all datastores
DataStores map[string]DataStore `yaml:"datastores"`
// TransactionSizeLimit is the largest allowed transaction size
TransactionSizeLimit dynamicconfig.IntPropertyFn `yaml:"-" json:"-"`
}
// DataStore is the configuration for a single datastore
DataStore struct {
// FaultInjection contains the config for fault injector wrapper.
FaultInjection *FaultInjection `yaml:"faultInjection"`
// Cassandra contains the config for a cassandra datastore
Cassandra *Cassandra `yaml:"cassandra"`
// SQL contains the config for a SQL based datastore
SQL *SQL `yaml:"sql"`
// Custom contains the config for custom datastore implementation
CustomDataStoreConfig *CustomDatastoreConfig `yaml:"customDatastore"`
// ElasticSearch contains the config for a ElasticSearch datastore
Elasticsearch *client.Config `yaml:"elasticsearch"`
}
FaultInjection struct {
// Targets is a mapping of data store name to a targeted fault injection config for that data store.
// Here is an example config for targeted fault injection. This config will inject errors into the
// UpdateShard method of the ShardStore at a rate of 100%. No other methods will be affected.
/*
targets:
dataStores:
ShardStore:
methods:
UpdateShard:
seed: 42
errors:
ShardOwnershipLostError: 1.0 # all UpdateShard calls will fail with ShardOwnershipLostError
*/
// This will cause the UpdateShard method of the ShardStore to always return ShardOwnershipLostError.
// See config/development-cass-es-fi.yaml for a more detailed example.
Targets FaultInjectionTargets `yaml:"targets"`
// Injector optionally injects faults using runtime code instead of static YAML config.
Injector FaultInjector `yaml:"-" json:"-"`
}
FaultInjector func(FaultInjectionTarget) error
FaultInjectionTarget struct {
Store DataStoreName
Method string
// Request is optionally populated by fault injection wrappers for request-aware faults.
Request any
}
// FaultInjectionTargets is the set of targets for fault injection. A target is a method of a data store.
FaultInjectionTargets struct {
// DataStores is a map of datastore name to fault injection config.
// Use this to configure fault injection for specific datastores. The key is the name of the datastore,
// e.g. "ShardStore". See DataStoreName for the list of valid datastore names.
DataStores map[DataStoreName]FaultInjectionDataStoreConfig `yaml:"dataStores"`
}
// DataStoreName is the name of a datastore, e.g. "ShardStore". The full list is defined later in this file.
DataStoreName string
// FaultInjectionDataStoreConfig is the fault injection config for a single datastore, e.g., the ShardStore.
FaultInjectionDataStoreConfig struct {
// Methods is a map of data store method name to a fault injection config for that method.
// We create an error generator that infers the method name from the call stack using reflection.
// For example, if a test with targeted fault injection enabled calls ShardStore.UpdateShard, then
// we fetch the error generator from this map using the key "UpdateShard".
// The key is the name of the method to inject faults for.
// The value is the config for that method.
Methods map[string]FaultInjectionMethodConfig `yaml:"methods"`
}
// FaultInjectionMethodConfig is the fault injection config for a single method of a data store.
FaultInjectionMethodConfig struct {
// Errors is a map of error type to probability of returning that error.
// For example: `ShardOwnershipLostError: 0.1` will cause the method to return a ShardOwnershipLostError 10% of
// the time.
// The other 90% of the time, the method will call the underlying datastore.
// If there are multiple errors for a method, the probability of each error is independent of the others.
// For example, if there are two errors with probabilities 0.1 and 0.2, then the first error will be returned
// 10% of the time, the second error will be returned 20% of the time,
// and the underlying method will be called 70% of the time.
Errors map[string]float64 `yaml:"errors"`
// Seed is the seed for the random number generator used to sample faults from the Errors map. You can use this
// to make the fault injection deterministic.
// If the test config does not set this to a non-zero number, the fault injector will set it to the current time
// in nanoseconds.
Seed int64 `yaml:"seed"`
}
// Cassandra contains configuration to connect to Cassandra cluster
Cassandra struct {
// Hosts is a csv of cassandra endpoints
Hosts string `yaml:"hosts" validate:"nonzero"`
// Port is the cassandra port used for connection by gocql client
Port int `yaml:"port"`
// User is the cassandra user used for authentication by gocql client
User string `yaml:"user"`
// Password is the cassandra password used for authentication by gocql client
Password string `yaml:"password"`
// AllowedAuthenticators is the optional list of authenticators the gocql client checks before approving the challenge request from the server.
AllowedAuthenticators []string `yaml:"allowedAuthenticators"`
// keyspace is the cassandra keyspace
Keyspace string `yaml:"keyspace" validate:"nonzero"`
// Datacenter is the data center filter arg for cassandra
Datacenter string `yaml:"datacenter"`
// MaxConns is the max number of connections to this datastore for a single keyspace
MaxConns int `yaml:"maxConns"`
// ConnectTimeout is a timeout for initial dial to cassandra server (default: 600 milliseconds)
ConnectTimeout time.Duration `yaml:"connectTimeout"`
// Timeout is a timeout for reads and, unless otherwise specified, writes. If not specified, ConnectTimeout is used.
Timeout time.Duration `yaml:"timeout"`
// WriteTimeout is a timeout for writing a query. If not specified, Timeout is used.
WriteTimeout time.Duration `yaml:"writeTimeout"`
// TLS configuration
TLS *auth.TLS `yaml:"tls"`
// Consistency configuration (defaults to LOCAL_QUORUM / LOCAL_SERIAL for all stores if this field not set)
Consistency *CassandraStoreConsistency `yaml:"consistency"`
// DisableInitialHostLookup instructs the gocql client to connect only using the supplied hosts
DisableInitialHostLookup bool `yaml:"disableInitialHostLookup"`
// AddressTranslator translates Cassandra IP addresses, used for cases when IP addresses gocql driver returns are not accessible from the server
AddressTranslator *CassandraAddressTranslator `yaml:"addressTranslator"`
}
// CassandraStoreConsistency enables you to set the consistency settings for each Cassandra Persistence Store for Temporal
CassandraStoreConsistency struct {
// Default defines the consistency level for ALL stores.
// Defaults to LOCAL_QUORUM and LOCAL_SERIAL if not set
Default *CassandraConsistencySettings `yaml:"default"`
}
CassandraAddressTranslator struct {
// Translator defines name of translator implementation to use for Cassandra address translation
Translator string `yaml:"translator"`
// Options map of options for address translator implementation
Options map[string]string `yaml:"options"`
}
// CassandraConsistencySettings sets the default consistency level for regular & serial queries to Cassandra.
CassandraConsistencySettings struct {
// Consistency sets the default consistency level. Values identical to gocql Consistency values. (defaults to LOCAL_QUORUM if not set).
Consistency string `yaml:"consistency"`
// SerialConsistency sets the consistency for the serial prtion of queries. Values identical to gocql SerialConsistency values. (defaults to LOCAL_SERIAL if not set)
SerialConsistency string `yaml:"serialConsistency"`
}
// PasswordCommandConfig configures an external command to fetch the datastore password.
// The command's stdout is used as the password.
PasswordCommandConfig struct {
// Command is the path to the executable to run.
Command string `yaml:"command"`
// Args is the list of arguments to pass to the command.
Args []string `yaml:"args"`
// Timeout is the maximum duration to wait for the command to complete.
// Defaults to 30 seconds if unset.
Timeout time.Duration `yaml:"timeout"`
}
// SQL is the configuration for connecting to a SQL backed datastore
SQL struct {
// Connect is a function that returns a sql db connection. String based configuration is ignored if this is provided.
Connect func(sqlConfig *SQL) (*sqlx.DB, error) `yaml:"-" json:"-"`
// User is the username to be used for the conn
User string `yaml:"user"`
// Password is the password corresponding to the user name
Password string `yaml:"password"`
// PasswordCommand executes an external command and uses its stdout as the password.
// Mutually exclusive with Password.
// If the command returns an expiring token (e.g. cloud IAM), set MaxConnLifetime
// to ensure connections are recycled before the token expires.
PasswordCommand *PasswordCommandConfig `yaml:"passwordCommand"`
// PluginName is the name of SQL plugin
PluginName string `yaml:"pluginName" validate:"nonzero"`
// DatabaseName is the name of SQL database to connect to
DatabaseName string `yaml:"databaseName" validate:"nonzero"`
// ConnectAddr is the remote addr of the database
ConnectAddr string `yaml:"connectAddr" validate:"nonzero"`
// ConnectProtocol is the protocol that goes with the ConnectAddr ex - tcp, unix
ConnectProtocol string `yaml:"connectProtocol" validate:"nonzero"`
// ConnectAttributes is a set of key-value attributes to be sent as part of connect data_source_name url.
// For the postgres12_pgx plugin, "require_auth" restricts which authentication methods the client
// accepts from the server (e.g. "scram-sha-256", or "!none" to negate), hardening against auth
// downgrade. Unset means all methods are accepted.
ConnectAttributes map[string]string `yaml:"connectAttributes"`
// MaxConns the max number of connections to this datastore
MaxConns int `yaml:"maxConns"`
// MaxIdleConns is the max number of idle connections to this datastore
MaxIdleConns int `yaml:"maxIdleConns"`
// MaxConnLifetime is the maximum time a connection can be alive
MaxConnLifetime time.Duration `yaml:"maxConnLifetime"`
// EXPERIMENTAL - TaskScanPartitions is the number of partitions to sequentially scan during ListTaskQueue operations.
// This is used for in a sharded sql database such as Vitess for heavy task workloads to minimize scatter gather.
// The default value for this param is 1, and should not be configured without a thorough understanding of what this does.
TaskScanPartitions int `yaml:"taskScanPartitions"`
// TLS is the configuration for TLS connections
TLS *auth.TLS `yaml:"tls"`
}
// CustomDatastoreConfig is the configuration for connecting to a custom datastore that is not supported by temporal core
CustomDatastoreConfig struct {
// Name of the custom datastore
Name string `yaml:"name"`
// IndexName represents a unique identifier for the data store.
// The name "IndexName" inherits from the Elasticsearch config and refers to the index name.
// In SQL, it refers to the database name.
// For custom data store, you may pick any name as long as it's unique across custom data
// stores (Elasticsearch index names and SQL database names).
IndexName string `yaml:"indexName"`
// Options to be used by AbstractDatastoreFactory implementation
Options map[string]any `yaml:"options"`
}
// Replicator describes the configuration of replicator
Replicator struct{}
// ReplicationTaskProcessorConfig is the config for replication task processor.
ReplicationTaskProcessorConfig struct {
NoTaskInitialWaitIntervalSecs int `yaml:"noTaskInitialWaitIntervalSecs"`
NoTaskWaitBackoffCoefficient float64 `yaml:"noTaskWaitBackoffCoefficient"`
NoTaskMaxWaitIntervalSecs int `yaml:"noTaskMaxWaitIntervalSecs"`
}
// DCRedirectionPolicy contains the frontend datacenter redirection policy
DCRedirectionPolicy struct {
Policy string `yaml:"policy"`
}
// Archival contains the config for archival
Archival struct {
// History is the config for the history archival
History HistoryArchival `yaml:"history"`
// Visibility is the config for visibility archival
Visibility VisibilityArchival `yaml:"visibility"`
}
// HistoryArchival contains the config for history archival
HistoryArchival struct {
// State is the state of history archival either: enabled, disabled, or paused
State string `yaml:"state"`
// EnableRead whether history can be read from archival
EnableRead bool `yaml:"enableRead"`
// Provider contains the config for all history archivers
Provider *HistoryArchiverProvider `yaml:"provider"`
}
// HistoryArchiverProvider contains the config for all history archivers
HistoryArchiverProvider struct {
Filestore *FilestoreArchiver `yaml:"filestore"`
Gstorage *GstorageArchiver `yaml:"gstorage"`
S3store *S3Archiver `yaml:"s3store"`
// CustomStores contains the config for all custom history archivers
// The structure is a map of archiver name (scheme) to a map of config key-values
CustomStores map[string]map[string]any `yaml:"customStores"`
}
// VisibilityArchival contains the config for visibility archival
VisibilityArchival struct {
// State is the state of visibility archival either: enabled, disabled, or paused
State string `yaml:"state"`
// EnableRead whether visibility can be read from archival
EnableRead bool `yaml:"enableRead"`
// Provider contains the config for all visibility archivers
Provider *VisibilityArchiverProvider `yaml:"provider"`
}
// VisibilityArchiverProvider contains the config for all visibility archivers
VisibilityArchiverProvider struct {
Filestore *FilestoreArchiver `yaml:"filestore"`
S3store *S3Archiver `yaml:"s3store"`
Gstorage *GstorageArchiver `yaml:"gstorage"`
// CustomStores contains the config for all custom visibility archivers
// The structure is a map of archiver name (scheme) to a map of config key-values
CustomStores map[string]map[string]any `yaml:"customStores"`
}
// FilestoreArchiver contain the config for filestore archiver
FilestoreArchiver struct {
FileMode string `yaml:"fileMode"`
DirMode string `yaml:"dirMode"`
}
// GstorageArchiver contain the config for google storage archiver
GstorageArchiver struct {
CredentialsPath string `yaml:"credentialsPath"`
}
// S3Archiver contains the config for S3 archiver
S3Archiver struct {
Region string `yaml:"region"`
Endpoint *string `yaml:"endpoint"`
S3ForcePathStyle bool `yaml:"s3ForcePathStyle"`
LogLevel uint `yaml:"logLevel"`
}
// PublicClient is the config for internal nodes (history/matching/worker) connecting to
// frontend. There are three methods of connecting:
// 1. Use membership to locate "internal-frontend" and connect to them using the Internode
// TLS config (which can be "no TLS"). This is recommended for deployments that use an
// Authorizer and ClaimMapper. To use this, leave this section out of your config, and
// make sure there is an "internal-frontend" section in Services.
// 2. Use membership to locate "frontend" and connect to them using the Frontend TLS config
// (which can be "no TLS"). This is recommended for deployments that don't use an
// Authorizer or ClaimMapper, or have implemented a custom ClaimMapper that correctly
// identifies the system worker using mTLS and assigns it an Admin-level claim.
// To use this, leave this section out of your config and make sure there is _no_
// "internal-frontend" section in Services.
// 3. Connect to an explicit endpoint using the SystemWorker (falling back to Frontend) TLS
// config (which can be "no TLS"). You can use this if you want to force frontend
// connections to go through an external load balancer. If you use this with a
// ClaimMapper+Authorizer, you need to ensure that your ClaimMapper assigns Admin
// claims to worker nodes, and your Authorizer correctly handles those claims.
PublicClient struct {
// HostPort is the host port to connect on. Host can be DNS name. See the above
// comment: in many situations you can leave this empty.
HostPort string `yaml:"hostPort"`
// HTTPHostPort is the HTTP host port to connect on. Host can be DNS name. See the above
// comment: in many situations you can leave this empty.
HTTPHostPort string `yaml:"httpHostPort"`
// Force selection of either the "internode" or "frontend" TLS configs for these
// connections (only those two strings are valid).
ForceTLSConfig string `yaml:"forceTLSConfig"`
}
// NamespaceDefaults is the default config for each namespace
NamespaceDefaults struct {
// Archival is the default archival config for each namespace
Archival ArchivalNamespaceDefaults `yaml:"archival"`
}
// ArchivalNamespaceDefaults is the default archival config for each namespace
ArchivalNamespaceDefaults struct {
// History is the namespace default history archival config for each namespace
History HistoryArchivalNamespaceDefaults `yaml:"history"`
// Visibility is the namespace default visibility archival config for each namespace
Visibility VisibilityArchivalNamespaceDefaults `yaml:"visibility"`
}
// HistoryArchivalNamespaceDefaults is the default history archival config for each namespace
HistoryArchivalNamespaceDefaults struct {
// State is the namespace default state of history archival: enabled or disabled
State string `yaml:"state"`
// URI is the namespace default URI for history archiver
URI string `yaml:"URI"`
}
// VisibilityArchivalNamespaceDefaults is the default visibility archival config for each namespace
VisibilityArchivalNamespaceDefaults struct {
// State is the namespace default state of visibility archival: enabled or disabled
State string `yaml:"state"`
// URI is the namespace default URI for visibility archiver
URI string `yaml:"URI"`
}
Visibility struct {
// PersistenceCustomSearchAttributes is a set of key-value pairs specifying the number of
// pre-allocated custom search attributes for each type. Pre-allocated custom search attributes
// are named following the convention `<type><seq>` (eg. Keyword01) and are expected to exist in
// the data store (eg. SQL DB table column Keyword01 must exist). The pre-allocated custom search
// attributes serves as a limit for the number of custom search attributes you can create per
// namespace.
// If any type is not specified, it will pre-allocate the default number of custom search
// attributes for the type defined in the map defaultNumDbCustomSearchAttributes in
// common/searchattribute/sadefs.go.
// Modifying the number of pre-allocated custom search attributes:
// - if you increase a number, it will pre-allocate additional custom search attributes to match
// the desired number;
// - if you decrease a number, it will not delete the existing custom search attributes, ie., it
// is no-op.
// This config only applies to SQL or custom Visibility stores.
PersistenceCustomSearchAttributes map[string]int `yaml:"persistenceCustomSearchAttributes" validate:"persistence_custom_search_attributes"`
}
Authorization struct {
// Signing key provider for validating JWT tokens
JWTKeyProvider JWTKeyProvider `yaml:"jwtKeyProvider"`
PermissionsClaimName string `yaml:"permissionsClaimName"`
// Regular expression to parse permissions claim value. The regex should contain named groups "namespace" and "role", for example
// `^(?P<role>\w+):(?P<namespace>\w+)$` will match `admin:default` and extract `default` as namespace and `admin` as role.
PermissionsRegex string `yaml:"permissionsRegex"`
// Empty string for noopAuthorizer or "default" for defaultAuthorizer
Authorizer string `yaml:"authorizer"`
// Empty string for noopClaimMapper or "default" for defaultJWTClaimMapper
ClaimMapper string `yaml:"claimMapper"`
// Name of main auth header to pass to ClaimMapper (as `AuthToken`). Defaults to `authorization`.
AuthHeaderName string `yaml:"authHeaderName"`
// Name of extra auth header to pass to ClaimMapper (as `ExtraData`). Defaults to `authorization-extras`.
AuthExtraHeaderName string `yaml:"authExtraHeaderName"`
// JWT audience for validating tokens
Audience string `yaml:"audience"`
// RemoteClusterAuth controls outbound credentials carried on cross-cluster RPCs.
RemoteClusterAuth RemoteClusterAuth `yaml:"remoteClusterAuth"`
}
// RemoteClusterAuth controls outbound auth on cross-cluster RPCs.
RemoteClusterAuth struct {
// Require fails outbound remote-cluster RPCs that have no token (and fails server boot if no TokenProvider is set).
Require bool `yaml:"require"`
}
// @@@SNIPSTART temporal-common-service-config-jwtkeyprovider
// Contains the config for signing key provider for validating JWT tokens
JWTKeyProvider struct {
KeySourceURIs []string `yaml:"keySourceURIs"`
RefreshInterval time.Duration `yaml:"refreshInterval"`
}
// @@@SNIPEND
)
const (
ShardStoreName DataStoreName = "ShardStore"
TaskStoreName DataStoreName = "TaskStore"
MetadataStoreName DataStoreName = "MetadataStore"
ExecutionStoreName DataStoreName = "ExecutionStore"
QueueName DataStoreName = "Queue"
QueueV2Name DataStoreName = "QueueV2"
ClusterMDStoreName DataStoreName = "ClusterMDStore"
NexusEndpointStoreName DataStoreName = "NexusEndpointStore"
)
const (
ForceTLSConfigAuto = ""
ForceTLSConfigInternode = "internode"
ForceTLSConfigFrontend = "frontend"
)
// Validate validates this config
if err := c.Persistence.Validate(); err != nil {
return err
}
return err
}
if hasIFE && (c.PublicClient.HostPort != "" || c.PublicClient.ForceTLSConfig != "" || c.PublicClient.HTTPHostPort != "") {
return fmt.Errorf("when using internal-frontend, publicClient must be empty")
}
case ForceTLSConfigAuto, ForceTLSConfigInternode, ForceTLSConfigFrontend:
default:
return fmt.Errorf("invalid value for publicClient.forceTLSConfig: %q", c.PublicClient.ForceTLSConfig)
}
}
// String converts the config object into a string
var buf bytes.Buffer
encoder := yaml.NewEncoder(&buf)
encoder.SetIndent(2)
_ = encoder.Encode(c)
maskedYaml, _ := masker.MaskYaml(buf.String(), masker.DefaultYAMLFieldNames)
return maskedYaml
}
return r.Server.KeyFile != "" || r.Server.KeyData != ""
}
return len(r.Client.RootCAFiles) > 0 || len(r.Client.RootCAData) > 0 ||
r.Client.ForceTLS
}
if len(p.KeySourceURIs) == 0 {
return false
}
for _, uri := range p.KeySourceURIs {
if strings.TrimSpace(uri) != "" {
return true
}
}
return false
}
func (k *KeepAliveServerConfig) GetKeepAliveServerParameters() keepalive.ServerParameters {
// the default config is same as grpc default config, same for the below client config and enforcement policy
defaultConfig := keepalive.ServerParameters{
MaxConnectionIdle: infinity,
MaxConnectionAge: infinity,
MaxConnectionAgeGrace: infinity,
Time: 2 * time.Hour,
Timeout: 20 * time.Second,
}
if k == nil || k.KeepAliveServerParameters == nil {
return defaultConfig
}
kp := k.KeepAliveServerParameters
if kp.MaxConnectionIdle != nil {
defaultConfig.MaxConnectionIdle = *kp.MaxConnectionIdle
}
if kp.MaxConnectionAge != nil {
defaultConfig.MaxConnectionAge = *kp.MaxConnectionAge
}
if kp.MaxConnectionAgeGrace != nil {
defaultConfig.MaxConnectionAgeGrace = *kp.MaxConnectionAgeGrace
}
if kp.Time != nil {
defaultConfig.Time = *kp.Time
}
if kp.Timeout != nil {
defaultConfig.Timeout = *kp.Timeout
}
return defaultConfig
}
func (c *ClientConnectionConfig) GetKeepAliveClientParameters() keepalive.ClientParameters {
defaultConfig := keepalive.ClientParameters{
Time: infinity,
Timeout: 20 * time.Second,
PermitWithoutStream: false,
}
if c == nil || c.KeepAliveClientConfig == nil {
return defaultConfig
}
if c.KeepAliveClientConfig.Time != nil {
defaultConfig.Time = *c.KeepAliveClientConfig.Time
}
if c.KeepAliveClientConfig.Timeout != nil {
defaultConfig.Timeout = *c.KeepAliveClientConfig.Timeout
}
if c.KeepAliveClientConfig.PermitWithoutStream != nil {
defaultConfig.PermitWithoutStream = *c.KeepAliveClientConfig.PermitWithoutStream
}
return defaultConfig
}
func (k *KeepAliveServerConfig) GetKeepAliveEnforcementPolicy() keepalive.EnforcementPolicy {
defaultConfig := keepalive.EnforcementPolicy{
MinTime: 5 * time.Minute,
PermitWithoutStream: false,
}
if k == nil || k.KeepAliveEnforcementPolicy == nil {
return defaultConfig
}
if k.KeepAliveEnforcementPolicy.MinTime != nil {
defaultConfig.MinTime = *k.KeepAliveEnforcementPolicy.MinTime
}
if k.KeepAliveEnforcementPolicy.PermitWithoutStream != nil {
defaultConfig.PermitWithoutStream = *k.KeepAliveEnforcementPolicy.PermitWithoutStream
}
return defaultConfig
}
func (fi *FaultInjection) WithError(storeName DataStoreName, methodName, errorName string, probability float64) *FaultInjection {
if fi == nil {
return nil
}
m := fi.method(storeName, methodName)
m.Errors[errorName] = probability
fi.Targets.DataStores[storeName].Methods[methodName] = m
return fi
}
func (fi *FaultInjection) WithMethodSeed(storeName DataStoreName, methodName string, seed int64) *FaultInjection {
if fi == nil {
return nil
}
m := fi.method(storeName, methodName)
m.Seed = seed
fi.Targets.DataStores[storeName].Methods[methodName] = m
return fi
}
func (fi *FaultInjection) method(storeName DataStoreName, methodName string) FaultInjectionMethodConfig {
if fi.Targets.DataStores == nil {
fi.Targets.DataStores = map[DataStoreName]FaultInjectionDataStoreConfig{}
}
store, ok := fi.Targets.DataStores[storeName]
if !ok {
store = FaultInjectionDataStoreConfig{Methods: map[string]FaultInjectionMethodConfig{}}
}
method, ok := store.Methods[methodName]
if !ok {
method = FaultInjectionMethodConfig{Errors: map[string]float64{}}
}
store.Methods[methodName] = method
fi.Targets.DataStores[storeName] = store
return method
}
func DefaultFaultInjection() *FaultInjection {
fiCfg := &FaultInjection{}
return fiCfg.
WithError(ExecutionStoreName, "CreateWorkflowExecution", "ResourceExhausted", 0.01).
WithError(ExecutionStoreName, "CreateWorkflowExecution", "Timeout", 0.01).
WithError(ExecutionStoreName, "CreateWorkflowExecution", "ExecuteAndTimeout", 0.01).
WithError(ExecutionStoreName, "UpdateWorkflowExecution", "ResourceExhausted", 0.01).
WithError(ExecutionStoreName, "UpdateWorkflowExecution", "Timeout", 0.01).
WithError(ExecutionStoreName, "UpdateWorkflowExecution", "ExecuteAndTimeout", 0.01).
WithError(ExecutionStoreName, "GetWorkflowExecution", "ResourceExhausted", 0.01).
WithError(ExecutionStoreName, "GetWorkflowExecution", "Timeout", 0.01).
WithError(ExecutionStoreName, "GetCurrentExecution", "ResourceExhausted", 0.01).
WithError(ExecutionStoreName, "GetCurrentExecution", "Timeout", 0.01).
WithError(ExecutionStoreName, "AppendHistoryNodes", "ResourceExhausted", 0.01).
WithError(ExecutionStoreName, "AppendHistoryNodes", "Timeout", 0.01).
WithError(ExecutionStoreName, "AppendHistoryNodes", "ExecuteAndTimeout", 0.01).
WithError(ExecutionStoreName, "ReadHistoryBranch", "ResourceExhausted", 0.01).
WithError(ExecutionStoreName, "ReadHistoryBranch", "Timeout", 0.01)
}