migrate: remove txindex and addrindex from chaindb

This commit is contained in:
Javed Khan 2019-03-22 16:57:01 -07:00 committed by Braydon Fuller
parent 05794f5cb3
commit 33de39ca0a
No known key found for this signature in database
GPG Key ID: F24F232D108B3AD4

79
migrate/chaindb5to6.js Normal file
View File

@ -0,0 +1,79 @@
'use strict';
const assert = require('assert');
const bdb = require('bdb');
const layout = require('../lib/blockchain/layout');
// changes:
// removes tx, addr indexes i.e layout.t, layout.T, layout.C
assert(process.argv.length > 2, 'Please pass in a database path.');
const db = bdb.create({
location: process.argv[2],
memory: false,
compression: true,
cacheSize: 32 << 20,
createIfMissing: false
});
async function removeKey(name, key) {
const iter = db.iterator({
gte: key.min(),
lte: key.max(),
reverse: true,
keys: true
});
let batch = db.batch();
let total = 0;
while (await iter.next()) {
const {key} = iter;
batch.del(key);
if (++total % 10000 === 0) {
console.log('Cleaned up %d %s index records.', total, name);
await batch.write();
batch = db.batch();
}
}
await batch.write();
console.log('Cleaned up %d %s index records.', total, name);
}
/*
* Execute
*/
(async () => {
await db.open();
console.log('Opened %s.', process.argv[2]);
console.log('Checking version.');
await db.verify(layout.V.build(), 'chain', 5);
const t = bdb.key('t', ['hash256']);
const T = bdb.key('T', ['hash', 'hash256']);
const C = bdb.key('C', ['hash', 'hash256', 'uint32']);
await removeKey('hash -> tx', t);
await removeKey('addr -> tx', T);
await removeKey('addr -> coin', C);
console.log('Compacting database...');
await db.compactRange();
console.log('Updating version to %d.', 6);
await db.del(layout.V.build());
await db.verify(layout.V.build(), 'chain', 6);
await db.close();
})().then(() => {
console.log('Migration complete.');
process.exit(0);
}).catch((err) => {
console.error(err.stack);
process.exit(1);
});