I'm in need of a basic definition and usage expectation for ElasticSearch. I have an ever growing folder of CSV-delimited based data (in files).
Elasticsearch likes JSON. I get that, and I have the ability to convert them over with no issue.
What I need to know is this: does each CSV row need to be in it's own file.json file to be considered for indexing? is that what a document is? or do I bulk stack JSON entries into a single file and run them in for indexing? is the json entry a document? or the file.json a document as ElasticSearch sees it?
Thanks.