forked from fullstorydev/solr-bench
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
61 lines (61 loc) · 1.83 KB
/
config.json
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
{
"cluster": {
"num-solr-nodes": 1,
"jdk-url": "http://enos.itcollege.ee/~jpoial/allalaadimised/jdk8/jdk-8u291-linux-x64.tar.gz",
"jdk-tarball": "jdk-8u291-linux-x64.tar.gz",
"jdk-directory": "jdk1.8.0_291",
"startup-params": "-m 1g -t /mnt/scratch",
"provisioning-method": "terraform-gcp",
"terraform-gcp-config": {
"project_id" : "bold-gadget-222718",
"zookeeper_machine_type" : "n1-standard-2",
"zookeeper_disk_type" : "pd-ssd",
"solr_node_count" : 2,
"solr_machine_type" : "n1-standard-4",
"solr_disk_type" : "pd-ssd",
"tags" : ["benchmarking", "solr", "temp"],
"public_key_path" : "id_rsa.pub",
"user" : "solruser"
}
},
"solr-package": "gs://solr-wikipedia-benchmarks/solr-custom.tgz",
"pre-download": [
"gs://solr-wikipedia-benchmarks/queryFile",
"gs://solr-wikipedia-benchmarks/small-enwiki.tsv.gz"
],
"index-benchmarks": [
{
"name": "CLOUD_INDEXING",
"description": "Wikipedia dataset on SolrCloud",
"replication-type": "cloud",
"dataset-file": "small-enwiki.tsv.gz",
"file-format": "tsv",
"setups": [
{
"setup-name": "cloud_2x2",
"collection": "small-wikipedia",
"replication-factor": 1,
"shards": 1,
"min-threads": 2,
"max-threads": 2,
"thread-step": 2
}
]
}
],
"query-benchmarks": [
{
"name": "Terms queries",
"collection": "small-wikipedia",
"query-file": "queryFile",
"min-threads": 1,
"max-threads": 1,
"json-query" : false,
"rpm": 3000,
"total-count" : 21,
"warm-count": 5
}
],
"metrics": ["jvm/solr.jvm/memory.heap.used", "jvm/solr.jvm/os.systemCpuLoad"],
"results-upload-location": "gs://solr-wikipedia-benchmarks/"
}