spring-projects / spring-batch

Spring Batch is a framework for writing batch applications using Java and Spring
http://projects.spring.io/spring-batch/
Apache License 2.0
2.69k stars 2.33k forks source link

Add support for Cassandra in Spring Batch [BATCH-2470] #1132

Open spring-projects-issues opened 8 years ago

spring-projects-issues commented 8 years ago

Nishant Sahay opened BATCH-2470 and commented

Though Spring data has extensive support for Cassandra, support for the same is not available in spring batch. This can be achieved as in line with support of mongodb in spring batch.


1 votes, 5 watchers

spring-projects-issues commented 8 years ago

Michael Minella commented

What support, specifically, are you looking for? Reader/writer support? Job Repository support?

spring-projects-issues commented 8 years ago

Nishant Sahay commented

Reader/ writer support. I'm working on a use case for batch upload into cassandra, and have utilized spring data cassandra + spring batch to implement custom writer. Can this feature be contributed?

spring-projects-issues commented 8 years ago

Michael Minella commented

Contributions are always welcome! We'd love to get a pull request for something like this. Please be sure to complete the contributor's agreement here: https://support.springsource.com/spring_committer_signup

spring-projects-issues commented 8 years ago

Nishant Sahay commented

I have completed the contributors agreement. Request you to assign this issue against my name.

spring-projects-issues commented 8 years ago

Michael Minella commented

Nishant Sahay, We typically don't assign issues to community members (since we can't be sure if they are actually going to do the work). Once you create a pull request on Github, you can update the issue with it and I'll pick it up.

spring-projects-issues commented 6 years ago

Marcin Erbel commented

Hi guys! Did you consider to implement Cassandra support in Spring Batch? I would like to use Spring Batch to store data to Cassandra through Spring-Data-Cassandra, but I would like also to have possibility to store my job configuration. Unfortunately I'm not able to have both (sql and no-sql) dbs.

spring-projects-issues commented 6 years ago

Michael Minella commented

Frendzel, This issue is not for supporting Cassandra as a data store for the JobRepository but only to support it from an ItemReader/ItemWriter perspective. There is the issue BATCH-2254 that covers the specific issue with storing the JobRepository data in Cassandra right now (the ids), but that still is something that may be able to be worked around.