Hi All,
We are using ES 2.1. I am not sure its related to ES or not. I am getting huge no of list part inital like
for(Object object: objects) {
Result result = compute(objects);
list.add(result);
}
and list will iterate again and get the detail of each item and then index it. Right now for each time, getting detail for result , a service call went and gave response back and then indexing start. So indexing take overall alot time.
My question is, is that I do parallel execution of multiple thread , then will it be good solution?
Does that effect on Elastic search indexing time. I know this more of java question compare to ES. Looking forward to your inputs.