-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
23 lines (23 loc) · 906 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = {
/** Time in ms before returning iterator for page records,
simulates physical storage access time. */
pageFetchTime: 0.1,
/** Maximum amoung of records one page can store */
maxNoOfRecsPerFile: 100,
cacheOptions: {
/** Maximum number of pages the buffer can store */
max: 50,
},
/** Size of block for blockjoin */
blockJoinSize: 100,
/**
* Tests will repeat algorithm for each scale in array.
* If running the standard tests, the scales represent
* how many records to load from input csv files, in percentages (0-100).
* If running the graph test, the scales will represent the connectivity of the generated graph.
* If running the sorting query test, these scales will represent the number of entries generated.
*/
scales: [10,25,50,100],
/** How many runs to do for each algorithm (first one will be discarded) */
noOfRuns: 5,
};