Elasticsearch single indexing performance -


is there difference when indexing elasticsearch batch data , single data? want use single indexing, don't know it's performance.

bulk api should used when ingesting large amounts of data. there significant overhead pay in terms of resource utilization/performance when using single index api (instead of bulk) index large amount of docs.


Comments