-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scylla: dedicated token aware ConnPicker
This is an extension to tokenAwareHostPolicy supported by the Scylla 2.3 and onwards. It allows driver to select a connection to shard on a host based on the token. The protocol extension spec is available at [1]. [1] https://github.com/scylladb/scylla/blob/master/docs/protocol-extensions.md Co-authored-by: Henrik Johansson <[email protected]> Co-authored-by: Michał Matczuk <[email protected]>
- Loading branch information
Showing
3 changed files
with
10,196 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
package gocql | ||
|
||
import ( | ||
"math" | ||
"strconv" | ||
) | ||
|
||
// scyllaSupported represents Scylla connection options as sent in SUPPORTED | ||
// frame. | ||
type scyllaSupported struct { | ||
shard int | ||
nrShards int | ||
msbIgnore uint64 | ||
} | ||
|
||
func parseSupported(supported map[string][]string) scyllaSupported { | ||
const ( | ||
scyllaShard = "SCYLLA_SHARD" | ||
scyllaNrShards = "SCYLLA_NR_SHARDS" | ||
scyllaPartitioner = "SCYLLA_PARTITIONER" | ||
scyllaShardingAlgorithm = "SCYLLA_SHARDING_ALGORITHM" | ||
scyllaShardingIgnoreMSB = "SCYLLA_SHARDING_IGNORE_MSB" | ||
) | ||
|
||
var ( | ||
si scyllaSupported | ||
err error | ||
) | ||
|
||
if s, ok := supported[scyllaShard]; ok { | ||
if si.shard, err = strconv.Atoi(s[0]); err != nil { | ||
if gocqlDebug { | ||
Logger.Printf("sharding: failed to parse %s value %v: %s", scyllaShard, s, err) | ||
} | ||
} | ||
} | ||
if s, ok := supported[scyllaNrShards]; ok { | ||
if si.nrShards, err = strconv.Atoi(s[0]); err != nil { | ||
if gocqlDebug { | ||
Logger.Printf("sharding: failed to parse %s value %v: %s", scyllaNrShards, s, err) | ||
} | ||
} | ||
} | ||
if s, ok := supported[scyllaShardingIgnoreMSB]; ok { | ||
if si.msbIgnore, err = strconv.ParseUint(s[0], 10, 64); err != nil { | ||
if gocqlDebug { | ||
Logger.Printf("sharding: failed to parse %s value %v: %s", scyllaShardingIgnoreMSB, s, err) | ||
} | ||
} | ||
} | ||
|
||
var ( | ||
partitioner string | ||
algorithm string | ||
) | ||
if s, ok := supported[scyllaPartitioner]; ok { | ||
partitioner = s[0] | ||
} | ||
if s, ok := supported[scyllaShardingAlgorithm]; ok { | ||
algorithm = s[0] | ||
} | ||
|
||
if partitioner != "org.apache.cassandra.dht.Murmur3Partitioner" || algorithm != "biased-token-round-robin" || si.nrShards == 0 || si.msbIgnore == 0 { | ||
return scyllaSupported{} | ||
} | ||
|
||
return si | ||
} | ||
|
||
// isScyllaConn checks if conn is suitable for scyllaConnPicker. | ||
func isScyllaConn(conn *Conn) bool { | ||
s := parseSupported(conn.supported) | ||
return s.nrShards != 0 | ||
} | ||
|
||
// scyllaConnPicker is a specialised ConnPicker that selects connections based | ||
// on token trying to get connection to a shard containing the given token. | ||
type scyllaConnPicker struct { | ||
conns []*Conn | ||
nrConns int | ||
nrShards int | ||
msbIgnore uint64 | ||
} | ||
|
||
func newScyllaConnPicker(conn *Conn) *scyllaConnPicker { | ||
s := parseSupported(conn.supported) | ||
if s.nrShards == 0 { | ||
panic("scylla: not a sharded connection") | ||
} | ||
|
||
return &scyllaConnPicker{ | ||
nrShards: s.nrShards, | ||
msbIgnore: s.msbIgnore, | ||
} | ||
} | ||
|
||
func (p *scyllaConnPicker) Remove(conn *Conn) { | ||
s := parseSupported(conn.supported) | ||
if s.nrShards == 0 { | ||
panic("scylla: not a sharded connection") | ||
} | ||
p.conns[s.shard] = nil | ||
} | ||
|
||
func (p *scyllaConnPicker) Close() { | ||
conns := p.conns | ||
p.conns = nil | ||
for _, conn := range conns { | ||
if conn != nil { | ||
conn.Close() | ||
} | ||
} | ||
} | ||
|
||
func (p *scyllaConnPicker) Size() (int, int) { | ||
return p.nrConns, p.nrShards - p.nrConns | ||
} | ||
|
||
func (p *scyllaConnPicker) Pick(t token) *Conn { | ||
if t == nil { | ||
for _, conn := range p.conns { | ||
if conn != nil { | ||
return conn | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
mmt, ok := t.(murmur3Token) | ||
// double check if that's murmur3 token | ||
if !ok { | ||
return nil | ||
} | ||
|
||
idx := p.shardOf(mmt) | ||
return p.conns[idx] | ||
} | ||
|
||
func (p *scyllaConnPicker) shardOf(token murmur3Token) int { | ||
shards := uint64(p.nrShards) | ||
z := uint64(token+math.MinInt64) << p.msbIgnore | ||
lo := z & 0xffffffff | ||
hi := (z >> 32) & 0xffffffff | ||
mul1 := lo * shards | ||
mul2 := hi * shards | ||
sum := (mul1 >> 32) + mul2 | ||
return int(sum >> 32) | ||
} | ||
|
||
func (p *scyllaConnPicker) Put(conn *Conn) { | ||
s := parseSupported(conn.supported) | ||
if s.nrShards == 0 { | ||
panic("scylla: not a sharded connection") | ||
} | ||
|
||
if s.nrShards != len(p.conns) { | ||
if s.nrShards != p.nrShards { | ||
panic("scylla: invalid number of shards") | ||
} | ||
conns := p.conns | ||
p.conns = make([]*Conn, s.nrShards, s.nrShards) | ||
copy(p.conns, conns) | ||
} | ||
if c := p.conns[s.shard]; c != nil { | ||
conn.Close() | ||
return | ||
} | ||
p.conns[s.shard] = conn | ||
p.nrConns++ | ||
} |
Oops, something went wrong.