David Ducos
David Ducos
The idea is to write into a pipe instead into a file _Originally posted by @davidducos in https://github.com/mydumper/mydumper/issues/190#issuecomment-1179240077_
Working on https://github.com/mydumper/mydumper/tree/mydumper_split, I realized that we are exporting non-innodb tables per thread and not per job. This means that it will be just 1 single thread working on a...
In order to avoid FTWRL, we could start the threads and check the trx position that they are seeing: For instance, after executing `start transaction with consistent snapshot`: ``` ---TRANSACTION...
We need to review the the detected server usage and add new functionality, remove old supported DB and add new ones as MARIADB. _Originally posted by @davidducos in https://github.com/mydumper/mydumper/issues/189#issuecomment-1108586674_
Seems that someone change the name of a variable in CMake from OpenSSL_FOUND to OPENSSL_FOUND, that is why our script is not able to find the library _Originally posted by...
Reviewing #657, I realized that we are creating the views as soon as they arrive, but we should be creating at the end. Not sure if this is something that...
We need to add a section as [myloader_variables] like [myloader_global] to set global variables that are going to be reverted after myloader has been executed. This will allow us to...
with --where it is possible to use " 1=1 limit 1000" but with mydumper you could execute multiple SELECTs. It might be useful to have a global limit per table,...
After implementing #697 I realize that could be possible to set a maximal amount of threads to execute the ALTER TABLE that add the indexes.
I have just realize that mydumper and myloader Can share temporary directory when stream is been used to avoid create the files twice.