cassandra: use LocalQuorum for all queries

This changes this filer store from eventual to strong consistency at the cost
of read performance.
This commit is contained in:
nivekuil 2021-07-20 14:47:39 -07:00
parent 2faf96f002
commit b9a67d46c5

View file

@ -124,7 +124,7 @@ func (store *CassandraStore) FindEntry(ctx context.Context, fullpath util.FullPa
var data []byte
if err := store.session.Query(
"SELECT meta FROM filemeta WHERE directory=? AND name=?",
dir, name).Consistency(gocql.LocalOne).Scan(&data); err != nil {
dir, name).Scan(&data); err != nil {
if err != gocql.ErrNotFound {
return nil, filer_pb.ErrNotFound
}