Reputation: 11
I am new to BonitaSoft BPMN . Please clarify if BonitaSoft has default system tables as Activiti BPMN ? Where does the information gets stored if we run a process in Bonita. Please help.
Upvotes: 1
Views: 875
Reputation: 91
Bonita has two databases:
1. bonita_journal
2. bonita_history
If you start a process it will store the data in bonita_journal db, and close the process the data stores in bonita_history.
Both the dbs has 69 tables:
+--------------------------+ | Tables_in_bonita_journal | +--------------------------+ | BN_ABSTR_ACT | | BN_ABSTR_ACT_ITDESC | | BN_ACTOR_DEF | | BN_ACT_CAND | | BN_ACT_DEF | | BN_ACT_INST | | BN_ACT_PERFORMERS | | BN_ATTACH_DEF | | BN_ATTS_INST | | BN_ATTS_METADATA | | BN_CATEGORY | | BN_COMMENTS | | BN_CON_DEF | | BN_CON_PARAM_ | | BN_DATAF_DEF | | BN_ENTITY_RULE | | BN_EVENTS | | BN_EVENT_PROC_DEF_ | | BN_EXCEPTION_RULE | | BN_GROUP | | BN_GROUP_RULE | | BN_IEI_ | | BN_IE_DEF | | BN_INCOMP_EVENTS | | BN_INST_ACTUSERS | | BN_INST_USERS | | BN_ITER_DESCR | | BN_LOB | | BN_MEMBERSHIP | | BN_MEMBERSHIP_RULE | | BN_METADATA | | BN_OEI_ | | BN_OE_DEF | | BN_PI_STATE_UPD | | BN_PROC_CAT | | BN_PROC_DEF | | BN_PROC_INST | | BN_PROC_INST_CHILD | | BN_PROC_INST_VARS | | BN_PROC_METADATA | | BN_PROC_SUBPROC | | BN_PROFILE_METADATA | | BN_PVM_ARGDESCR | | BN_PVM_DESCR | | BN_PVM_EXEC | | BN_PVM_OPERATION | | BN_ROLE | | BN_ROLE_RULE | | BN_RULE | | BN_RULETYPE_POLICY | | BN_STATE_UPD | | BN_SUBFLOW_PARAM_DEF | | BN_TASK_ASS_UPD | | BN_TA_UPD_CAND | | BN_TRANS_DEF | | BN_TRANS_STATES | | BN_USER | | BN_USER_MEMBERSHIP | | BN_USER_PROFILE_METADATA | | BN_USER_RULE | | BN_VAR | | BN_VAR_UPDATE | | BN_WEB_CASE | | BN_WEB_TOKEN | | ENTRY_NODES | | EXIT_NODES | | INCOMING_TR | | OTHER_NODES | | OUTGOING_TR |
Upvotes: 2
Reputation: 91
There are two main "apps" whe you say Bonita. Bonita BPM Studio
and Bonita Portal
. In current version, 6.5.X, the default database used by the Bonita BPM Studio is the H2.
If you want to change the database, just modify two files under <bonita-folder>\workspace\server_configuration\tomcat_conf
:
Upvotes: -1
Reputation: 1795
Bonita BPM use a H2 database to store the system data. You can find more information in the documentation : http://documentation.bonitasoft.com/database-configuration-1#h2default
It is possible to change the database if you prefer another type of database.
Upvotes: 0