Dmitry Kropachev
Dmitry Kropachev
Please answer these questions before submitting your issue. Thanks! ### What version of Cassandra are you using? any ### What version of Gocql are you using? `v1.6.0` ### What version...
`example_test.go` can randomly fail with: `example_test.go:864: unexpectedly l2 acquired lock`
Closes https://github.com/uber-go/zap/issues/1438 Makes it possible to override/wrap encoder: ```golang zap.NewProductionConfig().Build(zap.WrapEncoder(func(encoding string, cfg zapcore.EncoderConfig, encoder zapcore.Encoder) (zapcore.Encoder, error) { .... })) ``` And sink ```golang zap.NewProductionConfig().Build(zap.WrapSinker(func(paths []string, sink zapcore.WriteSyncer, errPath []string,...
**Is your feature request related to a problem? Please describe.** I would want to override encoder, to mask some data out from logs, or encode it: ```golang type MaskingEncoder struct...
**Describe the bug** Node replacement after GCE instance got terminated fails with 'Cannot replace_address x.x.x.x because it doesn't exist in gossip' **To Reproduce** 1. Deploy scylla-operator on GKE 2. Terminate...
tablet_integration_test.go is being flakky, ocasionally failing with the following error: ``` tablet_integration_test.go:135: trace should show only one shard but it showed 0 shards, shards: [] trace: Tracing session 003a78b03e8111ef8cdda3e1b5278e98 (coordinator:...
It is updated https://github.com/scylladb/gocql/pull/114 Due to the https://github.com/scylladb/gocql/pull/114 being stuck with no progress
Closes https://github.com/scylladb/gocql/issues/218 # Column-based blobs compression ## General idea If client stores big blobs of data compressing data that goes into that field will reduce operations select/update footprint on both...
`SimpleStrategy` is getting depricated, as replacement is it recomended to use `NetworkTopologyStrategy` instead. In order to make test cases to reflect production use, let's switch tests to `NetworkTopologyStrategy`. Tests that...