migrateDirtyDBtoRealDB: formatting
No functional changes.
This commit is contained in:
parent
770c1c80b7
commit
d155b792e9
1 changed files with 18 additions and 18 deletions
|
@ -15,28 +15,28 @@ require("ep_etherpad-lite/node_modules/npm").load({}, function(er,npm) {
|
|||
var ueberDB = require("../src/node_modules/ueberdb2");
|
||||
var log4js = require("../src/node_modules/log4js");
|
||||
var dbWrapperSettings = {
|
||||
"cache": "0", // The cache slows things down when you're mostly writing.
|
||||
"writeInterval": 0 // Write directly to the database, don't buffer
|
||||
"cache": "0", // The cache slows things down when you're mostly writing.
|
||||
"writeInterval": 0 // Write directly to the database, don't buffer
|
||||
};
|
||||
var db = new ueberDB.database(settings.dbType, settings.dbSettings, dbWrapperSettings, log4js.getLogger("ueberDB"));
|
||||
|
||||
db.init(function() {
|
||||
console.log("Waiting for dirtyDB to parse its file.");
|
||||
dirty.on("load", function(length) {
|
||||
console.log("Loaded " + length + " records, processing now.");
|
||||
var remaining = length;
|
||||
dirty.forEach(function(key, value) {
|
||||
db.set(key, value, function(error) {
|
||||
if (typeof error != 'undefined') {
|
||||
console.log("Unexpected result handling: ", key, value, " was: ", error);
|
||||
}
|
||||
remaining -= 1;
|
||||
var oldremaining = remaining;
|
||||
if ((oldremaining % 100) == 0) {
|
||||
console.log("Records not yet flushed to database: ", remaining);
|
||||
}
|
||||
});
|
||||
});
|
||||
console.log("Waiting for dirtyDB to parse its file.");
|
||||
dirty.on("load", function(length) {
|
||||
console.log("Loaded " + length + " records, processing now.");
|
||||
var remaining = length;
|
||||
dirty.forEach(function(key, value) {
|
||||
db.set(key, value, function(error) {
|
||||
if (typeof error != 'undefined') {
|
||||
console.log("Unexpected result handling: ", key, value, " was: ", error);
|
||||
}
|
||||
remaining -= 1;
|
||||
var oldremaining = remaining;
|
||||
if ((oldremaining % 100) == 0) {
|
||||
console.log("Records not yet flushed to database: ", remaining);
|
||||
}
|
||||
});
|
||||
});
|
||||
console.log("Please wait for all records to flush to database, then kill this process.");
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue