-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathinsert.js
207 lines (175 loc) · 5.19 KB
/
insert.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
Copyright (c) 2013, Oracle and/or its affiliates. All rights
reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2 of
the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
'use strict';
var mynode = require(".."),
random = require("../samples/ndb_loader/lib/RandomData"),
udebug = require("../Adapter/api/unified_debug"),
stats = require("../Adapter/api/stats");
function usage() {
var msg = "" +
"Usage: node insert [options]\n" +
" -d : Enable debug output\n" +
" -l : Test latency\n" +
" -t : Test throughput\n" +
" -f : Test find()\n" +
" -n : Use ndb adapter (default)\n" +
" -m : Use mysql adapter\n"
;
console.log(msg);
process.exit(1);
}
function parse_command_line(options) {
var i, len, val;
len = process.argv.length;
for(i = 2 ; i < len; i++) {
val = process.argv[i];
switch(val) {
case '-d':
udebug.level_debug();
break;
case '-t':
options.mode = "throughput";
break;
case '-l':
options.mode = "latency";
break;
case '-f':
options.mode = "find";
break;
case '-n':
options.adapter = "ndb";
break;
case '-m':
options.adapter = "mysql";
break;
default:
usage();
}
}
}
function Row() {
}
function getIntervalTimer() {
var time = Date.now();
console.log("Interval timer initialized.");
return function interval(description) {
var current = Date.now();
var result = current - time;
console.log(description, " Interval: ", result, "ms.");
time = current;
return result;
}
}
function doThroughputTest(error, session, batchSize, timeInterval) {
function onDone(error) {
stats.peek();
var r = timeInterval("Batch completed.");
console.log("Avg. Latency", r / batchSize, "ms. per operation");
console.log("Throughput", (batchSize * 10000) / r, " rows per sec.");
}
function onRowInserted(error, mystery) {
if(error) { console.log(error, mystery); }
}
function doBatchInsert(rdg) {
timeInterval("Starting batch.");
var batch = session.createBatch();
var i = 0;
var row;
for (; i < batchSize ; i++) {
row = rdg.newRow();
batch.persist("a", row, onRowInserted);
}
batch.execute(onDone);
}
function onTable(err, metadata) {
var generator = new random.RandomRowGenerator(metadata);
doBatchInsert(generator);
}
/* doBatchInsert starts here */
session.getTableMetadata("jscrund", "a", onTable);
}
function doSingleInserts(error, session, count, timeInterval) {
var n = 0;
var generator;
function onRowInserted(error) {
n += 1;
var row = generator.newRow();
var r;
if(n >= count) {
r = timeInterval("Inserts completed.");
console.log("Avg. Latency", r / count, "ms. per operation");
console.log("Throughput", (count * 10000) / r, " rows per sec.");
}
else {
session.persist("a", row, onRowInserted);
}
}
function onTable(err, metadata) {
generator = new random.RandomRowGenerator(metadata);
var row = generator.newRow();
timeInterval("Starting Inserts.");
session.persist("a", row, onRowInserted);
}
/* doSingleInserts starts here */
session.getTableMetadata("jscrund", "a", onTable);
}
function doFindTest(err, session, count, timeInterval) {
var n = 0;
function onRowFound(error, data) {
n += 1;
var key = Math.floor(Math.random() * count);
if(n >= count) {
var r = timeInterval("Find completed.");
console.log("Avg. Latency", r / count, "ms. per operation");
console.log("Throughput", (count * 10000) / r, " rows per sec.");
}
else {
session.find("a", key, onRowFound);
}
}
function onTable(err, metadata) {
var key = Math.floor(Math.random() * count);
timeInterval("Starting find.");
session.find("a", key, onRowFound);
}
/* doFindTest() starts here */
session.getTableMetadata("jscrund", "a", onTable);
}
function main() {
var options = { /* Default options: */
"adapter" : "ndb"
};
parse_command_line(options);
var tm = new mynode.TableMapping("a").applyToClass(Row);
var intervalTimer = getIntervalTimer();
properties.database = "jscrund";
properties.mysql_user = "root";
switch(options.mode) {
case "throughput":
mynode.openSession(properties, null, doThroughputTest, 4000, intervalTimer);
break;
case "latency":
mynode.openSession(properties, null, doSingleInserts, 4000, intervalTimer);
break;
case "find":
mynode.openSession(properties, null, doFindTest, 4000, intervalTimer);
break;
default:
usage();
}
}
main();