Results 20 comments of Sergey Ostanevich

So as it should be in Linux environment, where all file descriptors are inherited during the process fork - in this case the call to 'cat' during log initialization.

> Checkpatch still fails complaining about result files for some reason. There is a new rule in checkpatch that prevents new diff tests appearance. Although, there was an [issue](https://github.com/tarantool/checkpatch/issues/35) and...

The reason was to implement the qsync replication w/o Raft in it. Hence, leader election doesn't interfere with the data consistency - you may reject request on the same leader...

We should elaborate on that: there could be a special restart option so that during local bootstrap replica can build some descriptor (merkle tree?) of its current data and send...

With extensions to the protocol under development (#7253) where we plan to send current term in ACK message, it should be easy to detect the divergence point: this ACK will...

For me the test reports ``` fiber count: 0 ``` apparently, because the Lua table size is not correct through the `#`. The following way is a kosher one: ```...

The linearizability of read is defined as no reads issued after a successful write will deliver data available before the write. Let's consider the following cases 1. Synchronous replication with...

@LeonidVas please consider opportunity to transfer/adapt the test to tt perf bench.

The reason is msgpack considers the value as a `double` if it doesn't fit: ``` > a=[21474836470] [ 21474836470 ] > typeof(a[0]) 'number' > msgpack.encode(a) ``` Where `0xcb` [means](https://github.com/msgpack/msgpack/blob/master/spec.md) `float...

Please provide details why is it important - there some problems with some code? Perhaps the reason is not here?