I am using a Nodejs application with npm module-elasticsearch. Should I create an instance of Elasticsearch every time I call the ES API, or should I only create one instance of the ES client and use it for each request, or should I use a combination of the above and what is the difference between them.
source
share