tikv / client-c

The C++ TiKV client used by TiFlash.
Apache License 2.0
40 stars 48 forks source link

Support super batch coprocessor request #98

Closed JaySon-Huang closed 1 year ago

JaySon-Huang commented 2 years ago

To reduce the overhead of transferring data between the read nodes and the write nodes, we need to make client-c support sending super batch coprocessor requests. Super batch coprocessor requests help us reduce the network overhead and the read amplification of delta data in the storage layer level.

Reference: https://github.com/pingcap/tidb/blob/v6.1.0/store/copr/batch_coprocessor.go#L675

JaySon-Huang commented 2 years ago

/assign @JaySon-Huang

JaySon-Huang commented 1 year ago

done in https://github.com/tikv/client-c/pull/108