Test for Large number of Fields in Kibana. (#16237)

* test huge data

* new file for testing large number of fields
*  testing large fields
* large_fields_test
* add the unload of es_archiver
* incorporated the changes in kibana.yml
* Revert "incorporated the changes in kibana.yml"
This reverts commit 8682121678.
* cleanup
* code simplification
* removed commented code
This commit is contained in:
Rashmi Kulkarni 2018-02-01 13:27:35 -08:00 committed by GitHub
parent f3bbd76bf2
commit 7586401cf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 61 additions and 2 deletions

View file

@ -0,0 +1,26 @@
{
"type": "index",
"value": {
"index": "testhuge",
"settings": {
"index": {
"mapping": {
"total_fields": {
"limit": "50000"
}
},
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"test": {
"properties": {
"date": {
"type": "date"
}
}
}
}
}
}