I want to use marija with docker. I have 2 docker containers. one with marija and one with elasticsearch.
I seeded some fake data, the index looks like this:
GET es:9200/test_persons
{
"test_persons": {
"aliases": {},
"mappings": {
"person": {
"properties": {
"city": {
"type": "string"
},
"company": {
"type": "string"
},
"country": {
"type": "string"
},
"email": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"settings": {
"index": {
"creation_date": "1551956277080",
"number_of_shards": "5",
"number_of_replicas": "1",
"uuid": "xxxxxx",
"version": {
"created": "2040699"
}
}
},
"warmers": {}
}
}
I tried a whole lot of different elasticsearch versions in docker
My config of marija looks like this:
config-docker.toml
[datasource]
[datasource.test_persons]
type="elasticsearch"
url="http://es:9200/test_persons"
[[loggings]]
output = "stdout"
level = "debug"
I am not so experienced with elasticsearch, I hope it is just a stupid mistake. Can someone help me?
I want to use marija with docker. I have 2 docker containers. one with marija and one with elasticsearch.
I seeded some fake data, the index looks like this:
GET es:9200/test_persons
I tried a whole lot of different elasticsearch versions in docker
My config of marija looks like this:
config-docker.toml
I am not so experienced with elasticsearch, I hope it is just a stupid mistake. Can someone help me?