As described in Quarkus JBeret documentation, it is possible to use in-memory
or jdbc
as values forquarkus.jberet.repository
. I can see corresponding io.quarkiverse.jberet.runtime.JBeretInMemoryJobRepositoryProducer
and io.quarkiverse.jberet.runtime.JBeretJdbcJobRepositoryProducer
classes.
I would like to implement my own DynamoDB JobRepository and plug it in JBeret. Is it possible to plug a custom JobRepository in JBeret?
I can see InfinispanRepository and MongoRepository exists (but not available in Quarkus). Is it possible to implement a DynamoDB based JobRepository?