我正在将一些大文件导入表格中:
casper.then(function(){
this.waitFor(function check() {
return this.evaluate(function() {
return document.querySelector("#abc").value.length > 2;
});
},function then() { // step to execute when check() is ok
console.log('yes');
},function timeout() { // step to execute if check has failed
console.log('no');
});
});
一个是56GB,另一个是36GB。我成功导入了其他最大17GB的表。几天之后,这两大进口品似乎都没有接近完成。
有关如何使这项工作的任何建议?还有,有办法看到mysqlimport的进展吗?
答案 0 :(得分:0)
尝试使用此导入命令
/usr/bin/mysql -h hostname -u Username -p databasename < "path to local database file.sql"