Skip to content

Instantly share code, notes, and snippets.

@Vanuan
Last active July 28, 2017 22:53

Revisions

  1. Vanuan revised this gist Jul 28, 2017. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion cache.js
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,3 @@
    const mkdirp = require('mkdirp');
    const r = require('rethinkdb');

    class Cache {
  2. Vanuan revised this gist Jul 28, 2017. No changes.
  3. Vanuan created this gist Jul 28, 2017.
    56 changes: 56 additions & 0 deletions cache.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,56 @@
    const mkdirp = require('mkdirp');
    const r = require('rethinkdb');

    class Cache {
    constructor(dbName) {
    this.dbName = dbName;
    }

    init() {
    return this.prepareDb().then(conn => { this.conn = conn; });
    }

    save(url, content) {
    return r.table('cache').insert({ url, content }, { conflict: 'update'}).run(this.conn);
    }

    retrieve(url) {
    if(!this.conn) throw 'no connection';
    return r.table('cache').get(url).run(this.conn).then(res => res && res.content);
    }

    finish() {
    return this.conn.close();
    }

    prepareDb() {
    return r.connect({
    host: 'rethinkdb',
    port: 28015,
    })
    .then((conn) => {
    return r
    .dbCreate(this.dbName)
    .run(conn)
    .catch((err) => console.log('ignore db create error'))
    .then(() => conn)
    })
    .then(conn => { conn.use(this.dbName); return conn; })
    .then(conn => { return this.createTable(conn, 'cache', 'url').then(() => conn) })
    }

    createTable(connection, tableName, primaryKey) {
    return r
    .tableCreate(tableName, { primaryKey: primaryKey })
    .run(connection)
    .catch(err => {
    if(!err.message.match('Table `' + this.dbName + '.' + tableName + '` already exists')) {
    throw err;
    }
    })
    }


    }

    module.exports = Cache;
    89 changes: 89 additions & 0 deletions migrate.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,89 @@
    /**
    * Moves cache from node-persit format to RethinkDB
    */
    const fs = require('fs');
    const path = require('path');
    const r = require('rethinkdb');


    function getFiles(cacheLocation) {
    return new Promise((resolve, reject) => {
    fs.readdir(cacheLocation, function (err, arr) {
    if(err) reject(arr);
    resolve(arr);
    });
    });
    };

    function pushToDb(conn, page) {
    return r.table('cache').insert({url: page.key, content: page.value }).run(conn);
    }

    function promiseArrayLoop(arr, itemCb) {
    return arr.reduce(function(promise, item, index, all) {
    return promise.then(function() {
    if(index % 10 === 0) {
    console.log(Math.floor(index / all.length * 100) + '%');
    }
    return itemCb(item);
    });
    }, Promise.resolve());
    }

    function parseFile(filename) {
    var dir = '/data/cache2';
    var file = path.join(dir, filename);

    return new Promise((resolve, reject) => {
    fs.readFile(file, 'utf8', function (err, text) {
    if (err) {
    reject(err);
    }
    var input = JSON.parse(text);
    resolve(input);
    });
    })
    }

    function convertFile(filename, db) {
    return parseFile(filename).then((cacheItem) => {
    return pushToDb(db, cacheItem);
    });
    }

    function convertLoop(db, cacheLocation) {
    return getFiles(cacheLocation)
    .then((files) => promiseArrayLoop(files, (filename) => convertFile(filename, db)))
    .then(() => db);
    }

    function createTable(connection, tableName, primaryKey) {
    return r
    .tableCreate(tableName, { primaryKey: primaryKey })
    .run(connection)
    .catch(err => {
    if(!err.message.match('Table `mirror.' + tableName + '` already exists')) {
    throw err;
    }
    })
    }

    function prepareDb() {
    return r.connect({
    host: 'rethinkdb',
    port: 28015,
    })
    .then((conn) => {
    return r
    .dbCreate('mirror')
    .run(conn)
    .catch((err) => console.log('ignore db create error'))
    .then(() => conn)
    })
    .then(conn => { conn.use('mirror'); return conn; })
    .then(conn => { return createTable(conn, 'cache', 'url').then(() => conn); })

    }


    prepareDb().then((db) => convertLoop(db, 'path/to/cache')).then(db => db.close());