mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge branch 'master' of https://github.com/chrislusf/seaweedfs
This commit is contained in:
commit
05c3c3f56b
|
@ -153,6 +153,8 @@ password = ""
|
||||||
superLargeDirectories = []
|
superLargeDirectories = []
|
||||||
# Name of the datacenter local to this filer, used as host selection fallback.
|
# Name of the datacenter local to this filer, used as host selection fallback.
|
||||||
localDC = ""
|
localDC = ""
|
||||||
|
# Gocql connection timeout, default: 600ms
|
||||||
|
connection_timeout_millisecond = 600
|
||||||
|
|
||||||
[hbase]
|
[hbase]
|
||||||
enabled = false
|
enabled = false
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/gocql/gocql"
|
"github.com/gocql/gocql"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/chrislusf/seaweedfs/weed/filer"
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
||||||
"github.com/chrislusf/seaweedfs/weed/glog"
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
||||||
|
@ -33,6 +34,7 @@ func (store *CassandraStore) Initialize(configuration util.Configuration, prefix
|
||||||
configuration.GetString(prefix+"password"),
|
configuration.GetString(prefix+"password"),
|
||||||
configuration.GetStringSlice(prefix+"superLargeDirectories"),
|
configuration.GetStringSlice(prefix+"superLargeDirectories"),
|
||||||
configuration.GetString(prefix+"localDC"),
|
configuration.GetString(prefix+"localDC"),
|
||||||
|
configuration.GetInt(prefix+"connection_timeout_millisecond"),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,12 +43,14 @@ func (store *CassandraStore) isSuperLargeDirectory(dir string) (dirHash string,
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (store *CassandraStore) initialize(keyspace string, hosts []string, username string, password string, superLargeDirectories []string, localDC string) (err error) {
|
func (store *CassandraStore) initialize(keyspace string, hosts []string, username string, password string, superLargeDirectories []string, localDC string, timeout int) (err error) {
|
||||||
store.cluster = gocql.NewCluster(hosts...)
|
store.cluster = gocql.NewCluster(hosts...)
|
||||||
if username != "" && password != "" {
|
if username != "" && password != "" {
|
||||||
store.cluster.Authenticator = gocql.PasswordAuthenticator{Username: username, Password: password}
|
store.cluster.Authenticator = gocql.PasswordAuthenticator{Username: username, Password: password}
|
||||||
}
|
}
|
||||||
store.cluster.Keyspace = keyspace
|
store.cluster.Keyspace = keyspace
|
||||||
|
store.cluster.Timeout = time.Duration(timeout) * time.Millisecond
|
||||||
|
glog.V(0).Infof("timeout = %d", timeout)
|
||||||
fallback := gocql.RoundRobinHostPolicy()
|
fallback := gocql.RoundRobinHostPolicy()
|
||||||
if localDC != "" {
|
if localDC != "" {
|
||||||
fallback = gocql.DCAwareRoundRobinPolicy(localDC)
|
fallback = gocql.DCAwareRoundRobinPolicy(localDC)
|
||||||
|
|
Loading…
Reference in a new issue