Dmitry Kropachev

Results 283 comments of Dmitry Kropachev

> Sorry for the late reply, I must have missed this somehow. Basically, when you run schemagen, it should output structs that use pointers for fields that are able to...

> > Do drivers support this new opcode already? If yes, then please provide tests. > > Drivers don't support this yet. This is a new feature and this is...

> How big this new filed is supposed to be in practice? Above certain threshold it would be wasteful to store 10k times the same string. We will report it...

> There could be 10k clients connected, easily. > > Perhaps deduplicate it via some hash table + weak pointers. Yeah, in some cases we have 1m clients.

> I reread your original report, and I think I understand better what problem you are trying to report: > > If I understand correctly, you are are looking at...

Fix is here: https://github.com/HdrHistogram/hdrhistogram-go/pull/51

> It looks like the root cause is wrong logic on python driver side, to be specific `wait_for_schema_agreement` doesn't handle control connection reconnection and tries to use closed connection. I...

I think best fix would be on server side. Server have to report client what is the best protocol version. We can address it on driver side as well, pull...