You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
job-repository-type=mongodb
# Optional, default is jdbc:h2:~/jberet-repo for h2 database as the default job repository DBMS.
# For h2 in-memory database, db-url = jdbc:h2:mem:test;DB_CLOSE_DELAY=-1
# For mongodb, db-url includes all the parameters for MongoClientURI, including hosts, ports, username, password,
# database name, and options. The format of MongoClient uri:
# mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]
# See MongoClientURI javadoc at http://api.mongodb.org/java/current/
# An example of MongoDB db-url = mongodb://localhost/testData
db-url = mongodb+srv://user:[email protected]/database
db-user =
db-password =
db-properties =
Is mongo db supported or did I misconfigured the properties?
Thanks
The text was updated successfully, but these errors were encountered:
JBeret does support a batch job repository backed by mongodb in Java SE standalone mode (not yet in WildFly or JBoss EAP). But since it is document-based nosql data store, there is no ddl for it.
I checked https://github.com/jberet/jsr352/tree/master/jberet-core/src/main/resources/sql and found that there is no mongo.ddl
my jberet.properties
Is mongo db supported or did I misconfigured the properties?
Thanks
The text was updated successfully, but these errors were encountered: