I would like to know how to export indices from AWS Elasticsearch Domain into CSV files.
I appreciate any advise.
I would like to know how to export indices from AWS Elasticsearch Domain into CSV files.
I appreciate any advise.
Please have a look at https://github.com/taraslayshchuk/es2csv.
You could do something like
es2csv -u https://your-aws-domain.region.es.amazonaws.com -i your_index_name -o csv_file.csv -r -q '{"query" : {"match_all" : {}}}'
Hope that helps.