Mandeep Khinda | bae5c98 | 2017-08-30 14:37:10 +0000 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | ############################## ElasticSearch Config ################################### |
| 3 | ####################################################################################### |
| 4 | |
| 5 | ############################## Networking ############################## |
| 6 | # |
| 7 | # The ip address/hostname and port to the desired AAI instance |
| 8 | # For development it's recommended to use a local instance of ES |
| 9 | # |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 10 | elasticsearch.ipAddress=aai-elasticsearch.{{.Release.Namespace}} |
| 11 | elasticsearch.httpPort={{ .Values.config.elasticsearchHttpPort }} |
Mandeep Khinda | bae5c98 | 2017-08-30 14:37:10 +0000 | [diff] [blame] | 12 | elasticsearch.javaApiPort=8443 |
| 13 | |
| 14 | ############################## Indexes ############################## |
| 15 | # |
| 16 | # Index names for various searches. |
| 17 | # |
| 18 | elasticsearch.indexName=entitysearchindex |
| 19 | elasticsearch.topographicalIndexName=topographicalsearchindex |
| 20 | elasticsearch.entityCountHistoryIndexName=entitycounthistoryindex |
| 21 | elasticsearch.autosuggestIndexname=entityautosuggestindex |
| 22 | |
| 23 | # Default document type |
| 24 | elasticsearch.type=default |
| 25 | |
| 26 | ############################## Index Mappings and Settings ############################## |
| 27 | # |
| 28 | # JSON files for sparky elasticsearch indexes. |
| 29 | # |
| 30 | elasticsearch.mappingsFileName=/etc/es_mappings.json |
| 31 | elasticsearch.settingsFileName=/etc/es_settings.json |
| 32 | elasticsearch.autosuggestSettingsFileName=/etc/autoSuggestSettings.json |
| 33 | elasticsearch.autosuggestMappingsFileName=/etc/autoSuggestMappings.json |
| 34 | elasticsearch.dynamicMappingsFileName=/etc/dynamicMappings.json |
| 35 | elasticsearch.entityCountHistoryMappingsFileName=/etc/entityCountHistoryMappings.json |
| 36 | |
| 37 | ############################## Statistics Report Formatting ############################## |
| 38 | # |
| 39 | # During synchronization, a formatted statisitics log is generated. |
| 40 | # |
| 41 | # Response size in bytes histogram |
| 42 | elasticsearch.taskProcessor.bytesHistogramLabel="[Response Size In Bytes]" |
| 43 | elasticsearch.taskProcessor.bytesHistogramMaxYAxis=1000000 |
| 44 | elasticsearch.taskProcessor.bytesHistogramNumBins=20 |
| 45 | elasticsearch.taskProcessor.bytesHistogramNumDecimalPoints=2 |
| 46 | # "Work on Hand" statisitcs for external resource requests |
| 47 | elasticsearch.taskProcessor.queueLengthHistogramLabel="[Queue Item Length]" |
| 48 | elasticsearch.taskProcessor.queueLengthHistogramMaxYAxis=20000 |
| 49 | elasticsearch.taskProcessor.queueLengthHistogramNumBins=20 |
| 50 | elasticsearch.taskProcessor.queueLengthHistogramNumDecimalPoints=2 |
| 51 | # Time on queue (how long does a task stay on the work queue) |
| 52 | elasticsearch.taskProcessor.taskAgeHistogramLabel="[Task Age In Ms]" |
| 53 | elasticsearch.taskProcessor.taskAgeHistogramMaxYAxis=600000 |
| 54 | elasticsearch.taskProcessor.taskAgeHistogramNumBins=20 |
| 55 | elasticsearch.taskProcessor.taskAgeHistogramNumDecimalPoints=2 |
| 56 | # Per transaction response time for external resource requests |
| 57 | elasticsearch.taskProcessor.responseTimeHistogramLabel="[Response Time In Ms]" |
| 58 | elasticsearch.taskProcessor.responseTimeHistogramMaxYAxis=1000 |
| 59 | elasticsearch.taskProcessor.responseTimeHistogramNumBins=20 |
| 60 | elasticsearch.taskProcessor.responseTimeHistogramNumDecimalPoints=2 |
| 61 | # Transaction throughput velocity |
| 62 | elasticsearch.taskProcessor.tpsHistogramLabel="[Transactions Per Second]" |
| 63 | elasticsearch.taskProcessor.tpsHistogramMaxYAxis=100 |
| 64 | elasticsearch.taskProcessor.tpsHistogramNumBins=20 |
| 65 | elasticsearch.taskProcessor.tpsHistogramNumDecimalPoints=2 |
| 66 | |
| 67 | ############################## Deprecated, to be removed or updated ############################## |
| 68 | elasticsearch.taskProcessor.maxConcurrentWorkers=5 |
| 69 | elasticsearch.taskProcessor.transactionRateControllerEnabled=false |
| 70 | elasticsearch.taskProcessor.numSamplesPerThreadForRunningAverage=100 |
| 71 | elasticsearch.taskProcessor.targetTPS=100 |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 72 | elasticsearch.clusterName=ES_AAI_LOCALHOST |