Nosql in camunda

why doesn’t camunda have the support for any nosql database.

@vikram1794 every workflow activities are bounded with transactions. So on every wait state of activity data will be flushed to Database. So transactions are like all or nothing passion. NoSQL databases doesn’t provide transactional behaviour, so RDBMS is recommended. Also if you look into other BPMN frameworks they always use RDBMS only.

Check for camunda supported databases : https://docs.camunda.org/manual/latest/introduction/supported-environments/#supported-database-products

1 Like