Skip to content

Commit

Permalink
Change default store_type to fs (#80)
Browse files Browse the repository at this point in the history
Closes #79
  • Loading branch information
ebadyano committed Jul 9, 2019
1 parent 9289456 commit 30a50c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion geonames/index.json
Expand Up @@ -2,7 +2,7 @@
"settings": {
"index.number_of_shards": {{number_of_shards | default(5)}},
"index.number_of_replicas": {{number_of_replicas | default(0)}},
"index.store.type": "{{store_type | default('hybridfs')}}",
"index.store.type": "{{store_type | default('fs')}}",
"index.requests.cache.enable": false
},
"mappings": {
Expand Down
2 changes: 1 addition & 1 deletion http_logs/challenges/default.json
Expand Up @@ -247,7 +247,7 @@
"settings": {%- if index_settings is defined %} {{index_settings | tojson}} {%- else %} {
"index.number_of_shards": {{number_of_shards | default(1)}},
"index.number_of_replicas": {{number_of_replicas | default(0)}},
"index.store.type": "{{store_type | default('mmapfs')}}"
"index.store.type": "{{store_type | default('fs')}}"
}{%- endif %}
}
},
Expand Down
2 changes: 1 addition & 1 deletion nested/index.json
Expand Up @@ -2,7 +2,7 @@
"settings": {
"index.number_of_shards": {{number_of_shards | default(1)}},
"index.number_of_replicas": {{number_of_replicas | default(0)}},
"index.store.type": "{{store_type | default('hybridfs')}}",
"index.store.type": "{{store_type | default('fs')}}",
"index.requests.cache.enable": false
},
"mappings": {
Expand Down
2 changes: 1 addition & 1 deletion nyc_taxis/challenges/default.json
Expand Up @@ -168,7 +168,7 @@
"settings": {%- if index_settings is defined %} {{index_settings | tojson}} {%- else %} {
"index.number_of_shards": {{number_of_shards | default(1)}},
"index.number_of_replicas": {{number_of_replicas | default(0)}},
"index.store.type": "{{store_type | default('mmapfs')}}"
"index.store.type": "{{store_type | default('fs')}}"
}{%- endif %}
}
},
Expand Down

0 comments on commit 30a50c8

Please sign in to comment.