kennytm
kennytm
This should better be transferred to https://github.com/pingcap/go-tpc/ (but i've no permission 🙃)
Could this be closed by #375?
cc @hanfei1991 @flowbehappy Given that the C++ code is .gitignore'd, could we remove `c++` from `make all`? Alternatively, is there any simple workaround to allow building C++ output without the...
Hi, this repository has been sort-of deprecated as the content has been fully merged into [pingcap/tidb](https://github.com/pingcap/tidb/tree/master/pkg/parser). Could you try if the `make all` from the parser package inside pingcap/tidb works?...
Hi. Is that the actual command line? Because the correct syntax to specify multiple databases should be ```sh ./mydumper ... -B xxx_APP -B xxx_ORDER -B xxx_POINT ... # ^~ ^~...
Not quite reproducible locally. `mydumper` is constantly using 12 **MB** of memory. Will try again tomorrow.
The RAM usage seems to be schema-dependent. On Alpine Linux the following schema caused mydumper to use up to 600 MiB of RAM: * 22 × bigint * 19 ×...
Not reproducible with _generated_ data on Debian, mydumper only uses roughly **5.5** MB of memory. Similarly Dumpling is using roughly **9.5** MB of memory (RSS). Trying to use Alpine next....
Disadvantages: * ANTLR4 [requires Java](https://github.com/antlr/antlr4/blob/master/doc/getting-started.md#unix) to run. This would be a high barrier to entry, compared with the current all-Go toolchain. * ANTLR4 [results in CST](https://stackoverflow.com/questions/29971097/how-to-create-ast-with-antlr4), which requires using Visitor...
The culprit is actually the `Join` structure being used to represent non-JOINs. When the `Join` does not represent a real JOIN the JoinLevel should not be changed. Please change the...