Fetching all the coordinates from solr and transforming them to csv is taking lot of time.
This can be done asynchronously to save time of main thread.
Generating csv from solr instance is taking too long. It took hours to process 2.3 million points. We need to do things incrementally so we don't repeat processing.
Fetching all the coordinates from solr and transforming them to csv is taking lot of time. This can be done asynchronously to save time of main thread.