/ELK-simple_bulk_app

Index practicing

Primary LanguagePython

TASK DESCRIPTION:

Write simple indexing application in your language of choice – Java/Python/C#/Javascript/etc... which will index simple csv file

Run it with suitable env

# local setup
docker-compose -f ./docker/docker-compose.yml up -d

Build docker image

NB

You can setup your own localfile, but do not forget to mount it with "-v" or add to the image

As well as name of the index (default is "my-first-python-index")

Or host, etc

sudo docker build -t es_bulk -f docker/Dockerfile .

Run image

docker run --network=host es_bulk

Run query here

GET my-first-python-index/_search

Teardown

docker-compose -f ./docker/docker-compose.yml down