forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cassandra_helpers.go
136 lines (118 loc) · 4.46 KB
/
cassandra_helpers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package common
import (
"fmt"
"strings"
"github.com/uber/cadence/common/logging"
"io/ioutil"
"os"
"github.com/gocql/gocql"
log "github.com/sirupsen/logrus"
"github.com/uber/cadence/tools/cassandra"
)
// NewCassandraCluster creates a cassandra cluster given comma separated list of clusterHosts
func NewCassandraCluster(clusterHosts string, port int, user, password, dc string) *gocql.ClusterConfig {
var hosts []string
for _, h := range strings.Split(clusterHosts, ",") {
if host := strings.TrimSpace(h); len(host) > 0 {
hosts = append(hosts, host)
}
}
cluster := gocql.NewCluster(hosts...)
cluster.ProtoVersion = 4
if port > 0 {
cluster.Port = port
}
if user != "" && password != "" {
cluster.Authenticator = gocql.PasswordAuthenticator{
Username: user,
Password: password,
}
}
if dc != "" {
cluster.HostFilter = gocql.DataCentreHostFilter(dc)
}
return cluster
}
// CreateCassandraKeyspace creates the keyspace using this session for given replica count
func CreateCassandraKeyspace(s *gocql.Session, keyspace string, replicas int, overwrite bool) (err error) {
// if overwrite flag is set, drop the keyspace and create a new one
if overwrite {
DropCassandraKeyspace(s, keyspace)
}
err = s.Query(fmt.Sprintf(`CREATE KEYSPACE IF NOT EXISTS %s WITH replication = {
'class' : 'SimpleStrategy', 'replication_factor' : %d}`, keyspace, replicas)).Exec()
if err != nil {
log.WithField(logging.TagErr, err).Error(`create keyspace error`)
return
}
log.WithField(`keyspace`, keyspace).Debug(`created namespace`)
return
}
// DropCassandraKeyspace drops the given keyspace, if it exists
func DropCassandraKeyspace(s *gocql.Session, keyspace string) (err error) {
err = s.Query(fmt.Sprintf("DROP KEYSPACE IF EXISTS %s", keyspace)).Exec()
if err != nil {
log.WithField(logging.TagErr, err).Error(`drop keyspace error`)
return
}
log.WithField(`keyspace`, keyspace).Info(`dropped namespace`)
return
}
// LoadCassandraSchema loads the schema from the given .cql files on this keyspace
func LoadCassandraSchema(dir string, fileNames []string, keyspace string, override bool) (err error) {
tmpFile, err := ioutil.TempFile("", "_cadence_")
if err != nil {
return fmt.Errorf("error creating tmp file:%v", err.Error())
}
defer os.Remove(tmpFile.Name())
for _, file := range fileNames {
content, err := ioutil.ReadFile(dir + "/" + file)
if err != nil {
return fmt.Errorf("error reading contents of file %v:%v", file, err.Error())
}
tmpFile.WriteString(string(content))
tmpFile.WriteString("\n")
}
tmpFile.Close()
config := &cassandra.SetupSchemaConfig{
BaseConfig: cassandra.BaseConfig{
CassHosts: "127.0.0.1",
CassKeyspace: keyspace,
},
SchemaFilePath: tmpFile.Name(),
Overwrite: override,
DisableVersioning: true,
}
err = cassandra.SetupSchema(config)
if err != nil {
err = fmt.Errorf("error loading schema:%v", err.Error())
}
return
}
// CQLTimestampToUnixNano converts CQL timestamp to UnixNano
func CQLTimestampToUnixNano(milliseconds int64) int64 {
return milliseconds * 1000 * 1000 // Milliseconds are 10⁻³, nanoseconds are 10⁻⁹, (-3) - (-9) = 6, so multiply by 10⁶
}
// UnixNanoToCQLTimestamp converts UnixNano to CQL timestamp
func UnixNanoToCQLTimestamp(timestamp int64) int64 {
return timestamp / (1000 * 1000) // Milliseconds are 10⁻³, nanoseconds are 10⁻⁹, (-9) - (-3) = -6, so divide by 10⁶
}