We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a692c1 commit 741e26cCopy full SHA for 741e26c
packages/cubejs-mysql-driver/driver/MySqlDriver.js
@@ -140,7 +140,7 @@ class MySqlDriver extends BaseDriver {
140
}
141
await this.createTable(table, columns);
142
try {
143
- const batchSize = 100; // TODO make dynamic?
+ const batchSize = 1000; // TODO make dynamic?
144
for (let j = 0; j < Math.ceil(tableData.rows.length / batchSize); j++) {
145
const currentBatchSize = Math.min(tableData.rows.length - j * batchSize, batchSize);
146
const indexArray = Array.from({ length: currentBatchSize }, (v, i) => i);
0 commit comments