Browse Source

let filer use all cassandra server

let filer use all cassandra server
pull/406/head
eshujiushiwo 8 years ago
committed by GitHub
parent
commit
e025fc00a4
  1. 3
      weed/filer/cassandra_store/cassandra_store.go

3
weed/filer/cassandra_store/cassandra_store.go

@ -34,11 +34,10 @@ func NewCassandraStore(keyspace string, hosts string) (c *CassandraStore, err er
c = &CassandraStore{} c = &CassandraStore{}
s := strings.Split(hosts, ",") s := strings.Split(hosts, ",")
if len(s) == 1 { if len(s) == 1 {
glog.V(2).Info("Only one cassandra node to connect!A Cluster is Proposed!Now using:", string(hosts)) glog.V(2).Info("Only one cassandra node to connect!A Cluster is Proposed!Now using:", string(hosts))
c.cluster = gocql.NewCluster(hosts) c.cluster = gocql.NewCluster(hosts)
} else if len(s) > 1 { } else if len(s) > 1 {
c.cluster = gocql.NewCluster(s[0], s[1])
c.cluster = gocql.NewCluster(s...)
} }
c.cluster.Keyspace = keyspace c.cluster.Keyspace = keyspace
c.cluster.Consistency = gocql.Quorum c.cluster.Consistency = gocql.Quorum

Loading…
Cancel
Save