Compare commits

...

17 Commits

Author SHA1 Message Date
Antonin Coulibaly ca9f13c919 dropme 2016-11-08 15:10:41 +01:00
Antonin Coulibaly abb3e15e43 update connection idea on new socket 2016-11-08 15:10:25 +01:00
Antonin Coulibaly a4b92ffb3a update connection idea on new socket 2016-11-07 16:01:32 +01:00
Antonin Coulibaly a134a43799 update connection idea on new socket 2016-11-07 15:43:35 +01:00
Antonin Coulibaly 9ff138e222 update connection idea on new socket 2016-11-07 15:15:23 +01:00
Antonin Coulibaly 2ce51fef6e create pool of socket 2016-11-07 14:59:32 +01:00
Antonin Coulibaly 94f1e4a2f6 create pool of socket 2016-11-07 14:45:07 +01:00
Antonin Coulibaly a24245d6a1 create pool of socket 2016-11-07 12:23:01 +01:00
Antonin Coulibaly 40ffcb0532 create pool of socket 2016-11-07 12:10:37 +01:00
Antonin Coulibaly d3b985342a create pool of socket 2016-11-07 11:59:21 +01:00
Antonin Coulibaly 98b1e4d7ad add range 2016-11-04 17:58:34 +01:00
Antonin Coulibaly 148bb50a50 add range 2016-11-04 17:52:33 +01:00
Antonin Coulibaly ea603f45e7 WIP - handle parallel requests 2016-11-03 15:48:43 +01:00
Antonin Coulibaly ee35409ca2 WIP - handle parallel requests 2016-11-03 13:25:08 +01:00
Antonin Coulibaly f50585845f dropme 2016-11-03 12:05:38 +01:00
Antonin Coulibaly 72712a9d9f Clean(kinetic): clean kinetic backend
The backend of kinetic now use the Kinetic class so we need to clean
the original backend
2016-11-03 12:05:38 +01:00
Antonin Coulibaly 6db9b1e3a7 FT(kinetic): Add a Kinetic class
Before that the backend was using a 'classic' flow.
This commit add a class that handle all the request for the kinetic
devices.

Update Config.js to have a drive list
2016-11-03 12:05:33 +01:00
6 changed files with 429 additions and 2 deletions

View File

@ -28,6 +28,11 @@
"host": "localhost",
"port": 8500
},
"kinetic": ["localhost:8123",
"localhost:8123",
"localhost:8123",
"localhost:8123",
"localhost:8123"],
"clusters": 10,
"log": {
"logLevel": "info",

View File

@ -1,7 +1,7 @@
import assert from 'assert';
import fs from 'fs';
import path from 'path';
import Kinetic from './data/kinetic/Kinetic';
import authDataChecker from './auth/in_memory/checker';
// whitelist IP, CIDR for health checks
@ -298,6 +298,22 @@ class Config {
dataPath,
metadataPath,
};
if (config.kinetic && process.env.S3SPROXYD === 'kinetic') {
assert(Array.isArray(config.kinetic),
'The kinetic config should be an array - ["host:port"]');
this.kinetic = {};
this.kinetic.drives = [];
config.kinetic.forEach(drive => {
const split = drive.split(':');
const obj = { host: split[0], port: split[1] };
for (var i = 0; i < 30; i++) {
// Initialize the objects
this.kinetic.drives.push(obj);
}
});
this.kinetic.instance = new Kinetic(this.kinetic.drives);
}
return config;
}
}

369
lib/data/kinetic/Kinetic.js Normal file
View File

@ -0,0 +1,369 @@
import async from 'async';
import crypto from 'crypto';
import EventEmitter from 'events';
import net from 'net';
import stream from 'stream';
import util from 'util';
import { errors } from 'arsenal';
import kineticlib from 'kineticlib';
const HEADER_SZ = 9;
class Kinetic {
/**
* @constructor
* @param {Object.<string>[]} drives - the list of drives
* @returns {Kinetic} - to allow for a functional style.
*/
constructor(drives) {
this._sockets = [];
this._drives = drives;
this._sockets = this._drives.map(drive => ({
drive,
clusterVersion: 0,
connectionID: 0,
sock: this._newSocket(),
_request: false,
_requestGet: false,
_events: new EventEmitter(),
}));
this._chunkTab = [];
this._count = 0;
this._lexiKey = '0';
this.connect();
return this;
}
/**
* Connect the sockets to the drives
* @return {undefined}
*/
connect() {
this._sockets.forEach((socket, index) => {
socket.sock.on('connect', () => {
this._bindReadable(socket, index);
}).connect(socket.drive);
});
}
getIt() {
let found = false;
for (let i = 0; i < this._sockets.length; i++) {
if (this._sockets[i]._request === false
&& this._sockets[i]._requestGet === false){
return i;
}
}
this._sockets.push(
{
drive: { host: '127.0.0.1', port: '8123' },
clusterVersion: 0,
connectionID: 0,
sequence: this._sequence,
sock: this._newSocket(),
_request: false,
_requestGet: false,
_events: new EventEmitter(),
});
const index = this._sockets.length - 1;
const sock = this._sockets[index];
sock.sock.on('connect', () => {
this._bindReadable(sock, index);
}).connect(sock.drive);
}
_bindReadable(socket, index) {
socket.sock.on('readable', err => {
if (socket._requestGet === false) {
this._parsePDU(socket, (err1, pdu) => {
this._parseRequest(err || err1, pdu, index);
});
} else {
this._endGet(index);
}
});
}
_parsePDU(socket, callback) {
const header = socket.sock.read(HEADER_SZ);
if (header !== null) {
const protobufSize = header.readInt32BE(1);
const rawData = socket.sock.read(protobufSize);
if (rawData !== null) {
const pdu = new kineticlib.PDU(
Buffer.concat([header, rawData]));
const err = this._propError(pdu);
return callback(err, pdu);
}
}
return undefined;
}
_parseRequest(err, pdu, index) {
const socket = this._sockets[index];
switch (pdu.getMessageType()) {
case null:
socket.connectionID = pdu.getConnectionId();
socket.clusterVersion = pdu.getClusterVersion();
socket.index = index;
if (!socket.sequence)
socket.sequence = 0;
return pdu;
case kineticlib.ops.PUT_RESPONSE:
this._sockets[index]._request = false;
this._sockets[index]._events.emit('putResponse', err);
break;
case kineticlib.ops.DELETE_RESPONSE:
this._sockets[index]._request = false;
this._sockets[index]._events.emit('deleteResponse', err);
break;
case kineticlib.ops.GET_RESPONSE:
this._sockets[index]._request = false;
if (err) {
console.log('----------------------- err in parse request');
console.log('----------------------- err in parse request');
console.log('----------------------- err in parse request');
console.log('----------------------- err in parse request');
console.log(err);
this._sockets[index]._events.emit('getResponse', err);
} else {
console.log('----------------------- no err in parse request');
console.log('----------------------- no err in parse request');
console.log('----------------------- no err in parse request');
console.log('----------------------- no err in parse request');
console.log(err);
this._startGet(index, pdu);
}
break;
default:
break;
}
return undefined;
}
_startGet(index, pdu) {
let chunk = Buffer.allocUnsafe(0);
this._sockets[index]._requestGet = true;
this._sockets[index]._chunkSize = pdu.getChunkSize();
if (this._sockets[index]._chunkSize > 0) {
chunk = this._sockets[index].sock.read();
this._count += chunk.length;
if (this._count === this._sockets[index]._chunkSize) {
this._sockets[index]._events.emit('getResponse', null, chunk);
} else {
this._chunkTab.push(chunk);
}
} else {
this._sockets[index]._events.emit('getResponse', errors.ObjNotFound);
}
}
_endGet(index) {
let chunk = Buffer.allocUnsafe(0);
if (this._count !== this._sockets[index]._chunkSize) {
chunk = this._sockets[index].sock.read();
this._chunkTab.push(chunk);
this._count += chunk.length;
}
if (this._count === this._sockets[index]._chunkSize) {
this._sockets[index]._events.emit(
'getResponse', null, Buffer.concat(this._chunkTab));
}
}
_newSocket() {
const socket = new net.Socket().pause();
socket.setNoDelay();
socket.setKeepAlive(true);
socket.unref();
return socket;
}
_propError(pdu) {
const statusCode = pdu.getStatusCode();
if (statusCode === kineticlib.errors.NOT_FOUND) {
return errors.ObjNotFound;
}
if (statusCode !== kineticlib.errors.SUCCESS) {
return pdu.getErrorMessage();
}
return undefined;
}
/**
* set the sequence of the request.
*
* @param {number} index - the index of the socket.
* @param {number} sequence - the sequence to be set.
* @returns {Kinetic} - To allow for a functional style.
*/
setSequence(index, sequence) {
if (sequence >= Number.MAX_VALUE) {
const temp = this._sockets[index].sock;
this._sockets[index].sock = this._newSocket();
this._sockets[index].sock.on('connect', () => {
this._bindReadable(this._sockets[index], index);
}).connect(this._sockets[index].drive);
temp.destroy();
this._sockets[index].sequence = 0;
} else {
this._sequence = sequence;
this._sockets[index].sequence = sequence;
}
return this;
}
/**
* get the pool of socket.
*
* @returns {Kinetic._sockets} - the pool of socket.
*/
getSockets() {
return this._sockets;
}
/**
* get the socket at the index.
*
* @param {number} index - the index of the socket.
* @returns {Object} - the socket.
*/
getSocket(index) {
return this._sockets[index];
}
/**
* get index of the socket.
*
* @param {string} host - the host of the socket.
* @param {string} port - the port of the socket.
* @returns {number|object} - the index of the socket or null if it does not
* exist.
*/
getSocketIndex(host, port) {
this._sockets.forEach((socket, index) => {
if (socket.host === host && socket.port === port) {
return index;
}
if (index === this._sockets.length - 1) {
return null;
}
return undefined;
});
}
_incrString(str) {
return (parseInt(str, 36) + 1).toString(36);
}
/**
* send the put request to the right drive.
*
* @param {number} index - the index of the socket
* @param {Buffer} value - the value to be put.
* @param {Object} options - the options object for the put request:
* kinetic-protocol
* {string} options.synchronization - synchronization mode
* {boolean} options.force - option for forcing the put
* @param {function} callback - the callback
* @returns {undefined}.
*/
put(index, value, options, callback) {
this._sockets[index]._request = true;
const socket = this._sockets[index];
const key = Buffer.concat([Buffer.from(
`${socket.drive.host}:${socket.drive.port}:${this._lexiKey}`)]);
this._lexiKey = this._incrString(this._lexiKey);
const tag = crypto.createHmac('sha1', 'asdfasdf').update(value)
.digest();
const pdu = new kineticlib.PutPDU(
socket.sequence, socket.connectionID, socket.clusterVersion,
key, value.length, tag, options);
this.setSequence(index, socket.sequence + 1);
const header = pdu.read();
const len = header.length + value.length;
return socket.sock.write(Buffer.concat([header, value], len), err => {
if (err) {
return callback(err);
}
return this._sockets[index]._events.once(
'putResponse', err => callback(err, key));
});
}
/**
* send the get request to the right drive.
*
* @param {number} index - the index of the socket
* @param {Buffer} key - the value to be put.
* @param {number[]} range - the range to get
* @param {function} callback - the callback
* @returns {undefined}.
*/
get(index, key, range, callback) {
let endValue = Buffer.allocUnsafe(0);
this._sockets[index]._request = true;
const socket = this._sockets[index];
const pdu = new kineticlib.GetPDU(
socket.sequence, socket.connectionID,
socket.clusterVersion, key);
console.log(util.inspect(pdu, {showHidden: false, depth: null}));
this.setSequence(index, socket.sequence + 1);
const header = pdu.read();
socket.sock.write(header, err => {
if (err) {
return callback(err);
}
return this._sockets[index]._events.once('getResponse', (err, chunk) => {
if (err) {
return callback(err);
}
this._sockets[index]._requestGet = false;
this._chunkTab = [];
this._count = 0;
if (range) {
endValue = chunk.slice(range[0], range[1] + 1);
} else {
endValue = chunk;
}
return callback(err, new stream.Readable({
read() {
this.push(endValue);
this.push(null);
},
}));
});
});
}
/**
* send the delete request to the right drive.
*
* @param {number} index - the index of the socket
* @param {Buffer} key - the value to be put.
* @param {object} options - the options for the delete request
* options.force - to force the delete
* options.synchronization - the type of the delete
* @param {function} callback - the callback
* @returns {undefined}.
*/
delete(index, key, options, callback) {
this._sockets[index]._request = true;
const socket = this._sockets[index];
const pdu = new kineticlib.DeletePDU(
socket.sequence, socket.connectionID,
socket.clusterVersion, key, options);
this.setSequence(index, socket.sequence + 1);
socket.sock.write(pdu.read(), err => {
if (err) {
return callback(err);
}
return this._sockets[index]._events.once(
'deleteResponse', err => callback(err));
});
}
}
export default Kinetic;

View File

@ -0,0 +1,32 @@
import config from '../../Config';
const backend = {
put: function putK(request, size, keyContext, reqUids, callback) {
const value = [];
const kinetic = config.kinetic.instance;
request.on('data', data => {
value.push(data);
}).on('end', err => {
if (err) {
return callback(err);
}
const index = kinetic.getIt();
return kinetic.put(
index, Buffer.concat(value), { force: true }, callback);
});
},
get: function getK(key, range, reqUids, callback) {
const kinetic = config.kinetic.instance;
const index = kinetic.getIt();
return kinetic.get(index, Buffer.from(key), range, callback);
},
delete: function delK(key, reqUids, callback) {
const kinetic = config.kinetic.instance;
const index = kinetic.getIt();
return kinetic.delete(index, Buffer.from(key), { force: true }, callback);
},
};
export default backend;

View File

@ -1,11 +1,12 @@
import async from 'async';
import { errors } from 'arsenal';
import assert from 'assert';
import Sproxy from 'sproxydclient';
import file from './file/backend';
import kinetic from './kinetic/backend';
import inMemory from './in_memory/backend';
import config from '../Config';
import MD5Sum from '../utilities/MD5Sum';
import assert from 'assert';
import kms from '../kms/wrapper';
let client;
@ -17,6 +18,9 @@ if (config.backends.data === 'mem') {
} else if (config.backends.data === 'file') {
client = file;
implName = 'file';
} else if (config.backends.data === 'kinetic') {
client = kinetic;
implName = 'kinetic';
} else if (config.backends.data === 'scality') {
client = new Sproxy({
bootstrap: config.sproxyd.bootstrap,

View File

@ -27,6 +27,7 @@
"babel-plugin-transform-es2015-parameters": "^6.2.0",
"bucketclient": "scality/bucketclient",
"commander": "^2.9.0",
"kinetic": "Kinetic/kinetic-js",
"level": "^1.4.0",
"level-sublevel": "^6.5.4",
"multilevel": "^7.3.0",