I have a project, a sort of ETL engine using spring-data-solr, collecting data from many sources and putting them in a solr instance. Initially there was just one core and I had no problem integrating solr.
Now the customer wants to manage a multicore solr intance and my engine should handle updtates to different cores at the same time. Looking at the spring-data-solr documentation and source code I have found no clues about how to do it: the only way comes to my mind is to use a different url for each core when creating the solrserver instance with spring, but it is not enough for me, since I do not know nothing about existing cores at compile time (it is an information retrieved at runtime). Can anyone point me to the right direction?
Thank you.
M@rco
Now the customer wants to manage a multicore solr intance and my engine should handle updtates to different cores at the same time. Looking at the spring-data-solr documentation and source code I have found no clues about how to do it: the only way comes to my mind is to use a different url for each core when creating the solrserver instance with spring, but it is not enough for me, since I do not know nothing about existing cores at compile time (it is an information retrieved at runtime). Can anyone point me to the right direction?
Thank you.
M@rco