Repository URL to install this package:
|
Version:
3.2.0 ▾
|
'use strict';
var assert = require('assert');
var util = require('util');
var heapdump;
var heapdumpPath = '/var/log/nodejs-driver';
try {
// eslint-disable-next-line global-require
heapdump = require('heapdump');
}
/* eslint-disable no-console, no-undef */
catch (e) {
console.error('There was an error while trying to import heapdump', e);
}
var helper = require('../../test-helper.js');
var cassandra = require('../../../index.js');
var Client = cassandra.Client;
var types = cassandra.types;
var utils = require('../../../lib/utils.js');
var client = new Client(utils.extend({ encoding: { copyBuffer: true}}, helper.baseOptions));
var keyspace = helper.getRandomName('ks');
var table = keyspace + '.' + helper.getRandomName('tbl');
if (!global.gc) {
console.log('You must run this test exposing the GC');
return;
}
var insertOnly = process.argv.indexOf('--insert-only') > 0;
var heapUsed = process.memoryUsage().heapUsed;
utils.series([
helper.ccmHelper.removeIfAny,
helper.ccmHelper.start(2),
client.connect.bind(client),
function (next) {
client.execute(helper.createKeyspaceCql(keyspace, 2), helper.waitSchema(client, next));
},
function (next) {
client.execute(helper.createTableCql(table), helper.waitSchema(client, next));
},
function insertData(next) {
console.log('Starting to insert data...');
var query = util.format('INSERT INTO %s (id, int_sample, blob_sample) VALUES (?, ?, ?)', table);
var counter = 0;
var callbackCounter = 0;
global.gc();
utils.timesLimit(10000, 500, function (v, timesNext) {
var n = counter++;
client.execute(query, [types.Uuid.random(), n, new Buffer(generateAsciiString(1024), 'utf8')], {prepare: true}, function (err) {
if ((callbackCounter++) % 1000 === 0) {
console.log('Inserted', callbackCounter);
}
assert.ifError(err);
setImmediate(timesNext);
});
}, function (err) {
if (err) {
return next(err);
}
next();
});
}
,
function selectData(next) {
if (insertOnly) {
return next();
}
console.log('Retrieving data...');
var query = util.format('SELECT * FROM %s', table);
var totalByteLength = 0;
global.gc();
var rowCount = 0;
client.eachRow(query, [], {prepare: true, autoPage: true}, function (n, row) {
//Buffer + int + uuid
totalByteLength += row['blob_sample'].length + 4 + 16;
rowCount++;
}, function (err, result) {
if (err) {
return next(err);
}
assert.strictEqual(rowCount, result.rowLength);
console.log(util.format('Retrieved %d rows and around %s', result.rowLength, formatLength(totalByteLength)));
next();
});
}
], function (err) {
assert.ifError(err);
client.shutdown(function (err) {
setImmediate(function () {
client = null;
global.gc();
var diff = process.memoryUsage().heapUsed - heapUsed;
console.log('Heap used difference', formatLength(diff));
if (heapdump) {
heapdump.writeSnapshot(heapdumpPath + '/' + Date.now() + '.heapsnapshot');
}
helper.ccmHelper.removeIfAny();
assert.ifError(err);
});
});
});
function formatLength(value) {
return Math.floor(value / 1024) + 'KiB';
}
function generateAsciiString(length) {
var text = '';
var possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for( var i=0; i < length; i++ ){
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
}