summaryrefslogtreecommitdiff
path: root/buildscripts/cost_model/config.json
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/cost_model/config.json')
-rw-r--r--buildscripts/cost_model/config.json143
1 files changed, 0 insertions, 143 deletions
diff --git a/buildscripts/cost_model/config.json b/buildscripts/cost_model/config.json
deleted file mode 100644
index c4e3c51f49e..00000000000
--- a/buildscripts/cost_model/config.json
+++ /dev/null
@@ -1,143 +0,0 @@
-{
- "database": {
- "connectionString": "mongodb://localhost",
- "databaseName": "abt_calibration",
- "dumpPath": "~/data/dump",
- "restoreFromDump": "never",
- "dumpOnExit": false
- },
- "dataGenerator": {
- "enabled": true,
- "collectionCardinalities": [
- 100,
- 200,
- 500
- ],
- "batchSize": 10000,
- "collectionTemplates": [
- {
- "name": "c_str",
- "fields": [
- {
- "name": "choice1",
- "type": "str",
- "distribution": "string_choice"
- }
- ]
- },
- {
- "name": "c_str_5",
- "fields": [
- {
- "name": "choice1",
- "type": "str",
- "distribution": "string_choice",
- "indexed": true
- },
- {
- "name": "mixed1",
- "type": "str",
- "distribution": "string_mixed",
- "indexed": true
- },
- {
- "name": "uniform1",
- "type": "str",
- "distribution": "string_uniform"
- },
- {
- "name": "choice2",
- "type": "str",
- "distribution": "string_choice"
- },
- {
- "name": "mixed2",
- "type": "str",
- "distribution": "string_mixed"
- }
- ],
- "compoundIndexes": [
- [
- "choice1",
- "mixed1"
- ],
- [
- "uniform1",
- "mixed2"
- ]
- ]
- },
- {
- "name": "c_str_10",
- "fields": [
- {
- "name": "choice1",
- "type": "str",
- "distribution": "string_choice",
- "indexed": true
- },
- {
- "name": "mixed1",
- "type": "str",
- "distribution": "string_mixed"
- },
- {
- "name": "uniform1",
- "type": "str",
- "distribution": "string_uniform"
- },
- {
- "name": "choice2",
- "type": "str",
- "distribution": "string_choice",
- "indexed": true
- },
- {
- "name": "mixed2",
- "type": "str",
- "distribution": "string_mixed"
- },
- {
- "name": "uniform2",
- "type": "str",
- "distribution": "string_uniform"
- },
- {
- "name": "choice3",
- "type": "str",
- "distribution": "string_choice",
- "indexed": true
- },
- {
- "name": "mixed3",
- "type": "str",
- "distribution": "string_mixed"
- },
- {
- "name": "uniform3",
- "type": "str",
- "distribution": "string_uniform"
- },
- {
- "name": "choice4",
- "type": "str",
- "distribution": "string_choice",
- "indexed": true
- }
- ]
- }
- ]
- },
- "abtCalibrator": {
- "enabled": true,
- "test_size": 0.2,
- "inputCollectionName": "calibrationData"
- },
- "workloadExecution": {
- "enabled": true,
- "outputCollectionName": "calibrationData",
- "writeMode": "replace",
- "warmupRuns": 1,
- "runs": 5
- }
-}