mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-23 00:03:43 +00:00
124 lines
3 KiB
Go
124 lines
3 KiB
Go
|
package temporal
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"go.temporal.io/server/common/cluster"
|
||
|
"go.temporal.io/server/common/config"
|
||
|
"go.temporal.io/server/common/persistence/sql/sqlplugin/sqlite"
|
||
|
)
|
||
|
|
||
|
const PersistenceStoreName = "sqlite-default"
|
||
|
|
||
|
const BroadcastAddress = "127.0.0.1"
|
||
|
|
||
|
const FrontendHttpPort = 8233
|
||
|
const FrontendPort = 7233
|
||
|
const HistoryPort = 7234
|
||
|
const MatchingPort = 7235
|
||
|
const WorkerPort = 7236
|
||
|
|
||
|
func NewConfig() *config.Config {
|
||
|
return &config.Config{
|
||
|
Persistence: config.Persistence{
|
||
|
DataStores: map[string]config.DataStore{
|
||
|
PersistenceStoreName: {SQL: &config.SQL{
|
||
|
PluginName: sqlite.PluginName,
|
||
|
ConnectAttributes: map[string]string{
|
||
|
"mode": "rwc",
|
||
|
},
|
||
|
DatabaseName: "temporal.db",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
DefaultStore: PersistenceStoreName,
|
||
|
VisibilityStore: PersistenceStoreName,
|
||
|
NumHistoryShards: 1,
|
||
|
},
|
||
|
Global: config.Global{
|
||
|
Membership: config.Membership{
|
||
|
MaxJoinDuration: 30 * time.Second,
|
||
|
BroadcastAddress: BroadcastAddress,
|
||
|
},
|
||
|
},
|
||
|
Services: map[string]config.Service{
|
||
|
"frontend": {
|
||
|
RPC: config.RPC{
|
||
|
HTTPPort: FrontendHttpPort,
|
||
|
GRPCPort: FrontendPort,
|
||
|
MembershipPort: FrontendPort + 100,
|
||
|
BindOnLocalHost: false,
|
||
|
BindOnIP: "0.0.0.0",
|
||
|
},
|
||
|
},
|
||
|
"history": {
|
||
|
RPC: config.RPC{
|
||
|
GRPCPort: HistoryPort,
|
||
|
MembershipPort: HistoryPort + 100,
|
||
|
BindOnLocalHost: true,
|
||
|
BindOnIP: "",
|
||
|
},
|
||
|
},
|
||
|
"matching": {
|
||
|
RPC: config.RPC{
|
||
|
GRPCPort: MatchingPort,
|
||
|
MembershipPort: MatchingPort + 100,
|
||
|
BindOnLocalHost: true,
|
||
|
BindOnIP: "",
|
||
|
},
|
||
|
},
|
||
|
"worker": {
|
||
|
RPC: config.RPC{
|
||
|
GRPCPort: WorkerPort,
|
||
|
MembershipPort: WorkerPort + 100,
|
||
|
BindOnLocalHost: true,
|
||
|
BindOnIP: "",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
ClusterMetadata: &cluster.Config{
|
||
|
EnableGlobalNamespace: false,
|
||
|
FailoverVersionIncrement: 10,
|
||
|
MasterClusterName: "active",
|
||
|
CurrentClusterName: "active",
|
||
|
ClusterInformation: map[string]cluster.ClusterInformation{
|
||
|
"active": {
|
||
|
Enabled: true,
|
||
|
InitialFailoverVersion: 1,
|
||
|
RPCAddress: fmt.Sprintf("%s:%d", BroadcastAddress, FrontendPort),
|
||
|
ClusterID: "todo",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
DCRedirectionPolicy: config.DCRedirectionPolicy{
|
||
|
Policy: "noop",
|
||
|
},
|
||
|
Archival: config.Archival{
|
||
|
History: config.HistoryArchival{
|
||
|
State: "disabled",
|
||
|
EnableRead: false,
|
||
|
Provider: nil,
|
||
|
},
|
||
|
Visibility: config.VisibilityArchival{
|
||
|
State: "disabled",
|
||
|
EnableRead: false,
|
||
|
Provider: nil,
|
||
|
},
|
||
|
},
|
||
|
PublicClient: config.PublicClient{
|
||
|
HostPort: fmt.Sprintf("%s:%d", BroadcastAddress, FrontendPort),
|
||
|
},
|
||
|
NamespaceDefaults: config.NamespaceDefaults{
|
||
|
Archival: config.ArchivalNamespaceDefaults{
|
||
|
History: config.HistoryArchivalNamespaceDefaults{
|
||
|
State: "disabled",
|
||
|
},
|
||
|
Visibility: config.VisibilityArchivalNamespaceDefaults{
|
||
|
State: "disabled",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|