Skip to content

Commit

Permalink
#191 Update configuration.sample
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Jul 10, 2019
1 parent 99cbfb4 commit f7207bb
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 5 deletions.
37 changes: 33 additions & 4 deletions conf/application.sample
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,39 @@
search {
# Name of the index
index = cortex
# Name of the ElasticSearch cluster
cluster = hive
# Address of the ElasticSearch instance
host = ["127.0.0.1:9300"]
# ElasticSearch instance address.
uri = "http://127.0.0.1:9200/"

## Advanced configuration
# Scroll keepalive.
#keepalive = 1m
# Scroll page size.
#pagesize = 50
# Number of shards
#nbshards = 5
# Number of replicas
#nbreplicas = 1
# Arbitrary settings
#settings {
# # Maximum number of nested fields
# mapping.nested_fields.limit = 100
#}

## Authentication configuration
#search.username = ""
#search.password = ""

## SSL configuration
#search.keyStore {
# path = "/path/to/keystore"
# type = "JKS" # or PKCS12
# password = "keystore-password"
#}
#search.trustStore {
# path = "/path/to/trustStore"
# type = "JKS" # or PKCS12
# password = "trustStore-password"
#}
}

## Cache
Expand Down
2 changes: 1 addition & 1 deletion docker/cortex/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- thread_pool.search.queue_size=100000
- thread_pool.bulk.queue_size=100000
cortex:
image: thehiveproject/cortex:latest
image: thehiveproject/cortex:3.0.0-RC4
depends_on:
- elasticsearch
ports:
Expand Down

0 comments on commit f7207bb

Please sign in to comment.