I have to crawl across some configured databases in a table . where each record specifies a schema to be read from . So we have to poll the table and run the job appropriately.
thought to use Spring batch(JdbcPagingItemReader) to read data from all the Schema's configured. if i have to configure this, How can i do it using Spring Batch ?
should i take multiple jobs with different reader for each database to read from, or is there any way where i can send the datasource at runtime for the Spring Batch to read data from ?
How can i manage Multiple databases for Single Spring Batch. If not is there any other suggestion for the Database Crawling(or Harvesting)?