Documentation
¶
Index ¶
Constants ¶
View Source
const ( // RetryInterval is the interval to retry. // Note: the interval must be less than the timeout of tidb and tikv, which is 2s by default in tikv. RetryInterval = 500 * time.Millisecond // TCPNetworkStr is the string of tcp network TCPNetworkStr = "tcp" // DefaultEnableGRPCGateway is the default value of EnableGRPCGateway DefaultEnableGRPCGateway = true // DefaultGRPCGracefulStopTimeout is the default timeout to wait for grpc server to gracefully stop DefaultGRPCGracefulStopTimeout = 5 * time.Second // DefaultHTTPGracefulShutdownTimeout is the default timeout to wait for http server to gracefully shutdown DefaultHTTPGracefulShutdownTimeout = 5 * time.Second // DefaultLogFormat is the default log format DefaultLogFormat = "text" // DefaultLogLevel is the default log level DefaultLogLevel = "info" // DefaultDisableErrorVerbose is the default value of DisableErrorVerbose DefaultDisableErrorVerbose = true // DefaultLeaderLease is the default value of LeaderLease DefaultLeaderLease = int64(3) // LeaderTickInterval is the interval to check leader LeaderTickInterval = 50 * time.Millisecond // DefaultKeyspaceName is the name reserved for default keyspace. DefaultKeyspaceName = "DEFAULT" // DefaultKeyspaceID is the default key space id. // Valid keyspace id range is [0, 0xFFFFFF](uint24max, or 16777215) // 0 is reserved for default keyspace with the name "DEFAULT", It's initialized when PD bootstrap // and reserved for users who haven't been assigned keyspace. DefaultKeyspaceID = uint32(0) // NullKeyspaceID is used for api v1 or legacy path where is keyspace agnostic. NullKeyspaceID = uint32(0xFFFFFFFF) // DefaultKeyspaceGroupID is the default key space group id. // We also reserved 0 for the keyspace group for the same purpose. DefaultKeyspaceGroupID = uint32(0) // MicroserviceRootPath is the root path of microservice in etcd. MicroserviceRootPath = "/ms" // APIServiceName is the name of api server. APIServiceName = "api" // TSOServiceName is the name of tso server. TSOServiceName = "tso" // ResourceManagerServiceName is the name of resource manager server. ResourceManagerServiceName = "resource_manager" // SchedulingServiceName is the name of scheduling server. SchedulingServiceName = "scheduling" // KeyspaceGroupsKey is the path component of keyspace groups. KeyspaceGroupsKey = "keyspace_groups" // PrimaryKey is the path component of primary. PrimaryKey = "primary" // MaxKeyspaceGroupCount is the max count of keyspace groups. keyspace group in tso // is the sharding unit, i.e., by the definition here, the max count of the shards // that we support is MaxKeyspaceGroupCount. The keyspace group id is in the range // [0, 99999], which explains we use five-digits number (%05d) to render the keyspace // group id in the storage endpoint path. MaxKeyspaceGroupCount = uint32(100000) // MaxKeyspaceGroupCountInUse is the max count of keyspace groups in use, which should // never exceed MaxKeyspaceGroupCount defined above. Compared to MaxKeyspaceGroupCount, // MaxKeyspaceGroupCountInUse is a much more reasonable value of the max count in the // foreseen future, and the former is just for extensibility in theory. MaxKeyspaceGroupCountInUse = uint32(4096) // DefaultKeyspaceGroupReplicaCount is the default replica count of keyspace group. DefaultKeyspaceGroupReplicaCount = 2 // DefaultKeyspaceGroupReplicaPriority is the default priority of a keyspace group replica. // It's used in keyspace group primary weighted-election to balance primaries' distribution. // Among multiple replicas of a keyspace group, the higher the priority, the more likely // the replica is to be elected as primary. DefaultKeyspaceGroupReplicaPriority = 0 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.