Open martisaw opened 3 years ago
Using MySQL as the datasource results in an error when restarting the application. On Startup it tries to create tables that already exist.
My Setup:
MySQL 8.0.23 in a docker container on port 3306. The following database driver in the build.gradle
runtimeOnly("mysql:mysql-connector-java:8.0.23")
My configuration
datasources: default: url: "jdbc:mysql://localhost:3306/mysql" username: root password: mysql driver-class-name: com.mysql.cj.jdbc.Driver
Note: Adding the generic proerty databaseSchemaUpdatedid not solve the problem.
databaseSchemaUpdate
Using MySQL as the datasource results in an error when restarting the application. On Startup it tries to create tables that already exist.
My Setup:
MySQL 8.0.23 in a docker container on port 3306. The following database driver in the build.gradle
My configuration
Note: Adding the generic proerty
databaseSchemaUpdate
did not solve the problem.The Stacktrace
15:08:47.029 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement '-- -- -- -- create table ACT_GE_PROPERTY ( NAME_ varchar(64), VALUE_ varchar(300), REV_ integer, primary key (NAME_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_GE_PROPERTY' already exists' 15:08:47.034 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('schema.version', 'fox', 1)'. Cause: 'Duplicate entry 'schema.version' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.038 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('schema.history', 'create(fox)', 1)'. Cause: 'Duplicate entry 'schema.history' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.043 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('next.dbid', '1', 1)'. Cause: 'Duplicate entry 'next.dbid' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.048 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('deployment.lock', '0', 1)'. Cause: 'Duplicate entry 'deployment.lock' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.052 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('history.cleanup.job.lock', '0', 1)'. Cause: 'Duplicate entry 'history.cleanup.job.lock' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.056 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('startup.lock', '0', 1)'. Cause: 'Duplicate entry 'startup.lock' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.061 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('telemetry.lock', '0', 1)'. Cause: 'Duplicate entry 'telemetry.lock' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.065 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_PROPERTY values ('installationId.lock', '0', 1)'. Cause: 'Duplicate entry 'installationId.lock' for key 'ACT_GE_PROPERTY.PRIMARY'' 15:08:47.069 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_GE_BYTEARRAY ( ID_ varchar(64), REV_ integer, NAME_ varchar(255), DEPLOYMENT_ID_ varchar(64), BYTES_ LONGBLOB, GENERATED_ TINYINT, TENANT_ID_ varchar(64), TYPE_ integer, CREATE_TIME_ datetime, ROOT_PROC_INST_ID_ varchar(64), REMOVAL_TIME_ datetime, primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_GE_BYTEARRAY' already exists' 15:08:47.073 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_GE_SCHEMA_LOG ( ID_ varchar(64), TIMESTAMP_ datetime, VERSION_ varchar(255), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_GE_SCHEMA_LOG' already exists' 15:08:47.077 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'insert into ACT_GE_SCHEMA_LOG values ('0', CURRENT_TIMESTAMP, '7.15.0')'. Cause: 'Duplicate entry '0' for key 'ACT_GE_SCHEMA_LOG.PRIMARY'' 15:08:47.081 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RE_DEPLOYMENT ( ID_ varchar(64), NAME_ varchar(255), DEPLOY_TIME_ datetime, SOURCE_ varchar(255), TENANT_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RE_DEPLOYMENT' already exists' 15:08:47.085 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_EXECUTION ( ID_ varchar(64), REV_ integer, ROOT_PROC_INST_ID_ varchar(64), PROC_INST_ID_ varchar(64), BUSINESS_KEY_ varchar(255), PARENT_ID_ varchar(64), PROC_DEF_ID_ varchar(64), SUPER_EXEC_ varchar(64), SUPER_CASE_EXEC_ varchar(64), CASE_INST_ID_ varchar(64), ACT_ID_ varchar(255), ACT_INST_ID_ varchar(64), IS_ACTIVE_ TINYINT, IS_CONCURRENT_ TINYINT, IS_SCOPE_ TINYINT, IS_EVENT_SCOPE_ TINYINT, SUSPENSION_STATE_ integer, CACHED_ENT_STATE_ integer, SEQUENCE_COUNTER_ bigint, TENANT_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_EXECUTION' already exists' 15:08:47.088 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_JOB ( ID_ varchar(64) NOT NULL, REV_ integer, TYPE_ varchar(255) NOT NULL, LOCK_EXP_TIME_ datetime NULL, LOCK_OWNER_ varchar(255), EXCLUSIVE_ boolean, EXECUTION_ID_ varchar(64), PROCESS_INSTANCE_ID_ varchar(64), PROCESS_DEF_ID_ varchar(64), PROCESS_DEF_KEY_ varchar(255), RETRIES_ integer, EXCEPTION_STACK_ID_ varchar(64), EXCEPTION_MSG_ varchar(4000), FAILED_ACT_ID_ varchar(255), DUEDATE_ datetime NULL, REPEAT_ varchar(255), REPEAT_OFFSET_ bigint DEFAULT 0, HANDLER_TYPE_ varchar(255), HANDLER_CFG_ varchar(4000), DEPLOYMENT_ID_ varchar(64), SUSPENSION_STATE_ integer NOT NULL DEFAULT 1, JOB_DEF_ID_ varchar(64), PRIORITY_ bigint NOT NULL DEFAULT 0, SEQUENCE_COUNTER_ bigint, TENANT_ID_ varchar(64), CREATE_TIME_ datetime, primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_JOB' already exists' 15:08:47.092 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_JOBDEF ( ID_ varchar(64) NOT NULL, REV_ integer, PROC_DEF_ID_ varchar(64), PROC_DEF_KEY_ varchar(255), ACT_ID_ varchar(255), JOB_TYPE_ varchar(255) NOT NULL, JOB_CONFIGURATION_ varchar(255), SUSPENSION_STATE_ integer, JOB_PRIORITY_ bigint, TENANT_ID_ varchar(64), DEPLOYMENT_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_JOBDEF' already exists' 15:08:47.096 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RE_PROCDEF ( ID_ varchar(64) not null, REV_ integer, CATEGORY_ varchar(255), NAME_ varchar(255), KEY_ varchar(255) not null, VERSION_ integer not null, DEPLOYMENT_ID_ varchar(64), RESOURCE_NAME_ varchar(4000), DGRM_RESOURCE_NAME_ varchar(4000), HAS_START_FORM_KEY_ TINYINT, SUSPENSION_STATE_ integer, TENANT_ID_ varchar(64), VERSION_TAG_ varchar(64), HISTORY_TTL_ integer, STARTABLE_ boolean NOT NULL default TRUE, primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RE_PROCDEF' already exists' 15:08:47.100 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_TASK ( ID_ varchar(64), REV_ integer, EXECUTION_ID_ varchar(64), PROC_INST_ID_ varchar(64), PROC_DEF_ID_ varchar(64), CASE_EXECUTION_ID_ varchar(64), CASE_INST_ID_ varchar(64), CASE_DEF_ID_ varchar(64), NAME_ varchar(255), PARENT_TASK_ID_ varchar(64), DESCRIPTION_ varchar(4000), TASK_DEF_KEY_ varchar(255), OWNER_ varchar(255), ASSIGNEE_ varchar(255), DELEGATION_ varchar(64), PRIORITY_ integer, CREATE_TIME_ datetime, DUE_DATE_ datetime, FOLLOW_UP_DATE_ datetime, SUSPENSION_STATE_ integer, TENANT_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_TASK' already exists' 15:08:47.103 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_IDENTITYLINK ( ID_ varchar(64), REV_ integer, GROUP_ID_ varchar(255), TYPE_ varchar(255), USER_ID_ varchar(255), TASK_ID_ varchar(64), PROC_DEF_ID_ varchar(64), TENANT_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_IDENTITYLINK' already exists' 15:08:47.107 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_VARIABLE ( ID_ varchar(64) not null, REV_ integer, TYPE_ varchar(255) not null, NAME_ varchar(255) not null, EXECUTION_ID_ varchar(64), PROC_INST_ID_ varchar(64), PROC_DEF_ID_ varchar(64), CASE_EXECUTION_ID_ varchar(64), CASE_INST_ID_ varchar(64), TASK_ID_ varchar(64), BATCH_ID_ varchar(64), BYTEARRAY_ID_ varchar(64), DOUBLE_ double, LONG_ bigint, TEXT_ varchar(4000), TEXT2_ varchar(4000), VAR_SCOPE_ varchar(64) not null, SEQUENCE_COUNTER_ bigint, IS_CONCURRENT_LOCAL_ TINYINT, TENANT_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_VARIABLE' already exists' 15:08:47.109 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_EVENT_SUBSCR ( ID_ varchar(64) not null, REV_ integer, EVENT_TYPE_ varchar(255) not null, EVENT_NAME_ varchar(255), EXECUTION_ID_ varchar(64), PROC_INST_ID_ varchar(64), ACTIVITY_ID_ varchar(255), CONFIGURATION_ varchar(255), CREATED_ datetime not null, TENANT_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_EVENT_SUBSCR' already exists' 15:08:47.112 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_INCIDENT ( ID_ varchar(64) not null, REV_ integer not null, INCIDENT_TIMESTAMP_ datetime not null, INCIDENT_MSG_ varchar(4000), INCIDENT_TYPE_ varchar(255) not null, EXECUTION_ID_ varchar(64), ACTIVITY_ID_ varchar(255), FAILED_ACTIVITY_ID_ varchar(255), PROC_INST_ID_ varchar(64), PROC_DEF_ID_ varchar(64), CAUSE_INCIDENT_ID_ varchar(64), ROOT_CAUSE_INCIDENT_ID_ varchar(64), CONFIGURATION_ varchar(255), TENANT_ID_ varchar(64), JOB_DEF_ID_ varchar(64), ANNOTATION_ varchar(4000), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_INCIDENT' already exists' 15:08:47.116 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_AUTHORIZATION ( ID_ varchar(64) not null, REV_ integer not null, TYPE_ integer not null, GROUP_ID_ varchar(255), USER_ID_ varchar(255), RESOURCE_TYPE_ integer not null, RESOURCE_ID_ varchar(255), PERMS_ integer, REMOVAL_TIME_ datetime, ROOT_PROC_INST_ID_ varchar(64), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_AUTHORIZATION' already exists' 15:08:47.118 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_FILTER ( ID_ varchar(64) not null, REV_ integer not null, RESOURCE_TYPE_ varchar(255) not null, NAME_ varchar(255) not null, OWNER_ varchar(255), QUERY_ LONGTEXT not null, PROPERTIES_ LONGTEXT, primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_FILTER' already exists' 15:08:47.121 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_METER_LOG ( ID_ varchar(64) not null, NAME_ varchar(64) not null, REPORTER_ varchar(255), VALUE_ bigint, TIMESTAMP_ datetime, MILLISECONDS_ bigint DEFAULT 0, primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_METER_LOG' already exists' 15:08:47.208 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_EXT_TASK ( ID_ varchar(64) not null, REV_ integer not null, WORKER_ID_ varchar(255), TOPIC_NAME_ varchar(255), RETRIES_ integer, ERROR_MSG_ varchar(4000), ERROR_DETAILS_ID_ varchar(64), LOCK_EXP_TIME_ datetime NULL, SUSPENSION_STATE_ integer, EXECUTION_ID_ varchar(64), PROC_INST_ID_ varchar(64), PROC_DEF_ID_ varchar(64), PROC_DEF_KEY_ varchar(255), ACT_ID_ varchar(255), ACT_INST_ID_ varchar(64), TENANT_ID_ varchar(64), PRIORITY_ bigint NOT NULL DEFAULT 0, primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_EXT_TASK' already exists' 15:08:47.217 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create table ACT_RU_BATCH ( ID_ varchar(64) not null, REV_ integer not null, TYPE_ varchar(255), TOTAL_JOBS_ integer, JOBS_CREATED_ integer, JOBS_PER_SEED_ integer, INVOCATIONS_PER_JOB_ integer, SEED_JOB_DEF_ID_ varchar(64), BATCH_JOB_DEF_ID_ varchar(64), MONITOR_JOB_DEF_ID_ varchar(64), SUSPENSION_STATE_ integer, CONFIGURATION_ varchar(255), TENANT_ID_ varchar(64), CREATE_USER_ID_ varchar(255), primary key (ID_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. Cause: 'Table 'ACT_RU_BATCH' already exists' 15:08:47.231 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXEC_ROOT_PI on ACT_RU_EXECUTION(ROOT_PROC_INST_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_EXEC_ROOT_PI'' 15:08:47.243 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXEC_BUSKEY on ACT_RU_EXECUTION(BUSINESS_KEY_)'. Cause: 'Duplicate key name 'ACT_IDX_EXEC_BUSKEY'' 15:08:47.256 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXEC_TENANT_ID on ACT_RU_EXECUTION(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_EXEC_TENANT_ID'' 15:08:47.269 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_TASK_CREATE on ACT_RU_TASK(CREATE_TIME_)'. Cause: 'Duplicate key name 'ACT_IDX_TASK_CREATE'' 15:08:47.284 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_TASK_ASSIGNEE on ACT_RU_TASK(ASSIGNEE_)'. Cause: 'Duplicate key name 'ACT_IDX_TASK_ASSIGNEE'' 15:08:47.297 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_TASK_OWNER on ACT_RU_TASK(OWNER_)'. Cause: 'Duplicate key name 'ACT_IDX_TASK_OWNER'' 15:08:47.313 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_TASK_TENANT_ID on ACT_RU_TASK(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_TASK_TENANT_ID'' 15:08:47.326 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_IDENT_LNK_USER on ACT_RU_IDENTITYLINK(USER_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_IDENT_LNK_USER'' 15:08:47.336 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_IDENT_LNK_GROUP on ACT_RU_IDENTITYLINK(GROUP_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_IDENT_LNK_GROUP'' 15:08:47.347 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_)'. Cause: 'Duplicate key name 'ACT_IDX_EVENT_SUBSCR_CONFIG_'' 15:08:47.360 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EVENT_SUBSCR_TENANT_ID on ACT_RU_EVENT_SUBSCR(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_EVENT_SUBSCR_TENANT_ID'' 15:08:47.374 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_VARIABLE_TASK_ID on ACT_RU_VARIABLE(TASK_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_VARIABLE_TASK_ID'' 15:08:47.386 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_VARIABLE_TENANT_ID on ACT_RU_VARIABLE(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_VARIABLE_TENANT_ID'' 15:08:47.398 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_VARIABLE_TASK_NAME_TYPE on ACT_RU_VARIABLE(TASK_ID_, NAME_, TYPE_)'. Cause: 'Duplicate key name 'ACT_IDX_VARIABLE_TASK_NAME_TYPE'' 15:08:47.409 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_ATHRZ_PROCEDEF on ACT_RU_IDENTITYLINK(PROC_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_ATHRZ_PROCEDEF'' 15:08:47.421 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_CONFIGURATION on ACT_RU_INCIDENT(CONFIGURATION_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_CONFIGURATION'' 15:08:47.432 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_TENANT_ID on ACT_RU_INCIDENT(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_TENANT_ID'' 15:08:47.446 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOB_EXECUTION_ID on ACT_RU_JOB(EXECUTION_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_JOB_EXECUTION_ID'' 15:08:47.457 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOB_HANDLER on ACT_RU_JOB(HANDLER_TYPE_(100),HANDLER_CFG_(155))'. Cause: 'Duplicate key name 'ACT_IDX_JOB_HANDLER'' 15:08:47.469 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOB_PROCINST on ACT_RU_JOB(PROCESS_INSTANCE_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_JOB_PROCINST'' 15:08:47.480 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOB_TENANT_ID on ACT_RU_JOB(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_JOB_TENANT_ID'' 15:08:47.492 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOBDEF_TENANT_ID on ACT_RU_JOBDEF(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_JOBDEF_TENANT_ID'' 15:08:47.501 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'CREATE INDEX ACT_IDX_METER_LOG_MS ON ACT_RU_METER_LOG(MILLISECONDS_)'. Cause: 'Duplicate key name 'ACT_IDX_METER_LOG_MS'' 15:08:47.511 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'CREATE INDEX ACT_IDX_METER_LOG_NAME_MS ON ACT_RU_METER_LOG(NAME_, MILLISECONDS_)'. Cause: 'Duplicate key name 'ACT_IDX_METER_LOG_NAME_MS'' 15:08:47.521 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'CREATE INDEX ACT_IDX_METER_LOG_REPORT ON ACT_RU_METER_LOG(NAME_, REPORTER_, MILLISECONDS_)'. Cause: 'Duplicate key name 'ACT_IDX_METER_LOG_REPORT'' 15:08:47.530 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'CREATE INDEX ACT_IDX_METER_LOG_TIME ON ACT_RU_METER_LOG(TIMESTAMP_)'. Cause: 'Duplicate key name 'ACT_IDX_METER_LOG_TIME'' 15:08:47.539 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'CREATE INDEX ACT_IDX_METER_LOG ON ACT_RU_METER_LOG(NAME_, TIMESTAMP_)'. Cause: 'Duplicate key name 'ACT_IDX_METER_LOG'' 15:08:47.623 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXT_TASK_TOPIC on ACT_RU_EXT_TASK(TOPIC_NAME_)'. Cause: 'Duplicate key name 'ACT_IDX_EXT_TASK_TOPIC'' 15:08:47.639 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXT_TASK_TENANT_ID on ACT_RU_EXT_TASK(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_EXT_TASK_TENANT_ID'' 15:08:47.653 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXT_TASK_PRIORITY ON ACT_RU_EXT_TASK(PRIORITY_)'. Cause: 'Duplicate key name 'ACT_IDX_EXT_TASK_PRIORITY'' 15:08:47.666 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXT_TASK_ERR_DETAILS ON ACT_RU_EXT_TASK(ERROR_DETAILS_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_EXT_TASK_ERR_DETAILS'' 15:08:47.680 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_AUTH_GROUP_ID on ACT_RU_AUTHORIZATION(GROUP_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_AUTH_GROUP_ID'' 15:08:47.693 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOB_JOB_DEF_ID on ACT_RU_JOB(JOB_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_JOB_JOB_DEF_ID'' 15:08:47.707 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_GE_BYTEARRAY add constraint ACT_FK_BYTEARR_DEPL foreign key (DEPLOYMENT_ID_) references ACT_RE_DEPLOYMENT (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_BYTEARR_DEPL'' 15:08:47.720 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_EXECUTION add constraint ACT_FK_EXE_PROCINST foreign key (PROC_INST_ID_) references ACT_RU_EXECUTION (ID_) on delete cascade on update cascade'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_EXE_PROCINST'' 15:08:47.731 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_EXECUTION add constraint ACT_FK_EXE_PARENT foreign key (PARENT_ID_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_EXE_PARENT'' 15:08:47.747 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_EXECUTION add constraint ACT_FK_EXE_SUPER foreign key (SUPER_EXEC_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_EXE_SUPER'' 15:08:47.761 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_EXECUTION add constraint ACT_FK_EXE_PROCDEF foreign key (PROC_DEF_ID_) references ACT_RE_PROCDEF (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_EXE_PROCDEF'' 15:08:47.774 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_IDENTITYLINK add constraint ACT_FK_TSKASS_TASK foreign key (TASK_ID_) references ACT_RU_TASK (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_TSKASS_TASK'' 15:08:47.787 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_IDENTITYLINK add constraint ACT_FK_ATHRZ_PROCEDEF foreign key (PROC_DEF_ID_) references ACT_RE_PROCDEF(ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_ATHRZ_PROCEDEF'' 15:08:47.801 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_TASK add constraint ACT_FK_TASK_EXE foreign key (EXECUTION_ID_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_TASK_EXE'' 15:08:47.817 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_TASK add constraint ACT_FK_TASK_PROCINST foreign key (PROC_INST_ID_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_TASK_PROCINST'' 15:08:47.832 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_TASK add constraint ACT_FK_TASK_PROCDEF foreign key (PROC_DEF_ID_) references ACT_RE_PROCDEF (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_TASK_PROCDEF'' 15:08:47.845 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_VARIABLE add constraint ACT_FK_VAR_EXE foreign key (EXECUTION_ID_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_VAR_EXE'' 15:08:47.874 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_VARIABLE add constraint ACT_FK_VAR_PROCINST foreign key (PROC_INST_ID_) references ACT_RU_EXECUTION(ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_VAR_PROCINST'' 15:08:47.891 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_VARIABLE add constraint ACT_FK_VAR_BYTEARRAY foreign key (BYTEARRAY_ID_) references ACT_GE_BYTEARRAY (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_VAR_BYTEARRAY'' 15:08:47.905 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_JOB add constraint ACT_FK_JOB_EXCEPTION foreign key (EXCEPTION_STACK_ID_) references ACT_GE_BYTEARRAY (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_JOB_EXCEPTION'' 15:08:47.916 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_EVENT_SUBSCR add constraint ACT_FK_EVENT_EXEC foreign key (EXECUTION_ID_) references ACT_RU_EXECUTION(ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_EVENT_EXEC'' 15:08:47.931 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_INCIDENT add constraint ACT_FK_INC_EXE foreign key (EXECUTION_ID_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_INC_EXE'' 15:08:47.945 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_INCIDENT add constraint ACT_FK_INC_PROCINST foreign key (PROC_INST_ID_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_INC_PROCINST'' 15:08:47.964 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_INCIDENT add constraint ACT_FK_INC_PROCDEF foreign key (PROC_DEF_ID_) references ACT_RE_PROCDEF (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_INC_PROCDEF'' 15:08:47.979 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_INCIDENT add constraint ACT_FK_INC_CAUSE foreign key (CAUSE_INCIDENT_ID_) references ACT_RU_INCIDENT (ID_) on delete cascade on update cascade'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_INC_CAUSE'' 15:08:47.996 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_INCIDENT add constraint ACT_FK_INC_RCAUSE foreign key (ROOT_CAUSE_INCIDENT_ID_) references ACT_RU_INCIDENT (ID_) on delete cascade on update cascade'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_INC_RCAUSE'' 15:08:48.010 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_EXT_TASK add constraint ACT_FK_EXT_TASK_ERROR_DETAILS foreign key (ERROR_DETAILS_ID_) references ACT_GE_BYTEARRAY (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_EXT_TASK_ERROR_DETAILS'' 15:08:48.021 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_JOB_DEF on ACT_RU_INCIDENT(JOB_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_JOB_DEF'' 15:08:48.032 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_INCIDENT add constraint ACT_FK_INC_JOB_DEF foreign key (JOB_DEF_ID_) references ACT_RU_JOBDEF (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_INC_JOB_DEF'' 15:08:48.044 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_AUTHORIZATION add constraint ACT_UNIQ_AUTH_USER unique (USER_ID_,TYPE_,RESOURCE_TYPE_,RESOURCE_ID_)'. Cause: 'Duplicate key name 'ACT_UNIQ_AUTH_USER'' 15:08:48.059 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_AUTHORIZATION add constraint ACT_UNIQ_AUTH_GROUP unique (GROUP_ID_,TYPE_,RESOURCE_TYPE_,RESOURCE_ID_)'. Cause: 'Duplicate key name 'ACT_UNIQ_AUTH_GROUP'' 15:08:48.074 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_VARIABLE add constraint ACT_UNIQ_VARIABLE unique (VAR_SCOPE_, NAME_)'. Cause: 'Duplicate key name 'ACT_UNIQ_VARIABLE'' 15:08:48.088 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_EXT_TASK add constraint ACT_FK_EXT_TASK_EXE foreign key (EXECUTION_ID_) references ACT_RU_EXECUTION (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_EXT_TASK_EXE'' 15:08:48.095 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_BATCH_SEED_JOB_DEF ON ACT_RU_BATCH(SEED_JOB_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_BATCH_SEED_JOB_DEF'' 15:08:48.103 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_BATCH add constraint ACT_FK_BATCH_SEED_JOB_DEF foreign key (SEED_JOB_DEF_ID_) references ACT_RU_JOBDEF (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_BATCH_SEED_JOB_DEF'' 15:08:48.108 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_BATCH_MONITOR_JOB_DEF ON ACT_RU_BATCH(MONITOR_JOB_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_BATCH_MONITOR_JOB_DEF'' 15:08:48.112 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_BATCH add constraint ACT_FK_BATCH_MONITOR_JOB_DEF foreign key (MONITOR_JOB_DEF_ID_) references ACT_RU_JOBDEF (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_BATCH_MONITOR_JOB_DEF'' 15:08:48.116 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_BATCH_JOB_DEF ON ACT_RU_BATCH(BATCH_JOB_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_BATCH_JOB_DEF'' 15:08:48.121 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_BATCH add constraint ACT_FK_BATCH_JOB_DEF foreign key (BATCH_JOB_DEF_ID_) references ACT_RU_JOBDEF (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_BATCH_JOB_DEF'' 15:08:48.125 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_BATCH_ID ON ACT_RU_VARIABLE(BATCH_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_BATCH_ID'' 15:08:48.129 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'alter table ACT_RU_VARIABLE add constraint ACT_FK_VAR_BATCH foreign key (BATCH_ID_) references ACT_RU_BATCH (ID_)'. Cause: 'Duplicate foreign key constraint name 'ACT_FK_VAR_BATCH'' 15:08:48.133 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_CAUSEINCID on ACT_RU_INCIDENT(CAUSE_INCIDENT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_CAUSEINCID'' 15:08:48.137 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_EXID on ACT_RU_INCIDENT(EXECUTION_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_EXID'' 15:08:48.141 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_PROCDEFID on ACT_RU_INCIDENT(PROC_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_PROCDEFID'' 15:08:48.145 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_PROCINSTID on ACT_RU_INCIDENT(PROC_INST_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_PROCINSTID'' 15:08:48.149 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_INC_ROOTCAUSEINCID on ACT_RU_INCIDENT(ROOT_CAUSE_INCIDENT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_INC_ROOTCAUSEINCID'' 15:08:48.153 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_AUTH_RESOURCE_ID on ACT_RU_AUTHORIZATION(RESOURCE_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_AUTH_RESOURCE_ID'' 15:08:48.157 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EXT_TASK_EXEC on ACT_RU_EXT_TASK(EXECUTION_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_EXT_TASK_EXEC'' 15:08:48.161 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_BYTEARRAY_ROOT_PI on ACT_GE_BYTEARRAY(ROOT_PROC_INST_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_BYTEARRAY_ROOT_PI'' 15:08:48.166 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_BYTEARRAY_RM_TIME on ACT_GE_BYTEARRAY(REMOVAL_TIME_)'. Cause: 'Duplicate key name 'ACT_IDX_BYTEARRAY_RM_TIME'' 15:08:48.170 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_BYTEARRAY_NAME on ACT_GE_BYTEARRAY(NAME_)'. Cause: 'Duplicate key name 'ACT_IDX_BYTEARRAY_NAME'' 15:08:48.174 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_DEPLOYMENT_NAME on ACT_RE_DEPLOYMENT(NAME_)'. Cause: 'Duplicate key name 'ACT_IDX_DEPLOYMENT_NAME'' 15:08:48.179 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_DEPLOYMENT_TENANT_ID on ACT_RE_DEPLOYMENT(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_DEPLOYMENT_TENANT_ID'' 15:08:48.184 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOBDEF_PROC_DEF_ID ON ACT_RU_JOBDEF(PROC_DEF_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_JOBDEF_PROC_DEF_ID'' 15:08:48.190 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_JOB_HANDLER_TYPE ON ACT_RU_JOB(HANDLER_TYPE_)'. Cause: 'Duplicate key name 'ACT_IDX_JOB_HANDLER_TYPE'' 15:08:48.194 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_EVENT_SUBSCR_EVT_NAME ON ACT_RU_EVENT_SUBSCR(EVENT_NAME_)'. Cause: 'Duplicate key name 'ACT_IDX_EVENT_SUBSCR_EVT_NAME'' 15:08:48.199 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_PROCDEF_DEPLOYMENT_ID ON ACT_RE_PROCDEF(DEPLOYMENT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_PROCDEF_DEPLOYMENT_ID'' 15:08:48.205 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_PROCDEF_TENANT_ID ON ACT_RE_PROCDEF(TENANT_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_PROCDEF_TENANT_ID'' 15:08:48.209 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_PROCDEF_VER_TAG ON ACT_RE_PROCDEF(VERSION_TAG_)'. Cause: 'Duplicate key name 'ACT_IDX_PROCDEF_VER_TAG'' 15:08:48.214 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_AUTH_ROOT_PI on ACT_RU_AUTHORIZATION(ROOT_PROC_INST_ID_)'. Cause: 'Duplicate key name 'ACT_IDX_AUTH_ROOT_PI'' 15:08:48.219 [main] ERROR org.camunda.bpm.engine.persistence - ENGINE-03015 Problem during schema operation 'create' with statement 'create index ACT_IDX_AUTH_RM_TIME on ACT_RU_AUTHORIZATION(REMOVAL_TIME_)'. Cause: 'Duplicate key name 'ACT_IDX_AUTH_RM_TIME'' 15:08:48.219 [main] INFO org.camunda.bpm.engine.persistence - ENGINE-03016 Performing database operation 'create' on component 'engine' with resource 'org/camunda/bpm/engine/db/create/activiti.mysql.create.engine.sql' 15:08:48.223 [main] ERROR org.camunda.bpm.engine.context - ENGINE-16004 Exception while closing command context: ENGINE-03017 Could not perform operation 'create' on database schema for SQL Statement: '-- -- -- -- create table ACT_GE_PROPERTY ( NAME_ varchar(64), VALUE_ varchar(300), REV_ integer, primary key (NAME_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. org.camunda.bpm.engine.ProcessEngineException: ENGINE-03017 Could not perform operation 'create' on database schema for SQL Statement: '-- -- -- -- create table ACT_GE_PROPERTY ( NAME_ varchar(64), VALUE_ varchar(300), REV_ integer, primary key (NAME_) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin'. at org.camunda.bpm.engine.impl.db.EnginePersistenceLogger.performDatabaseOperationException(EnginePersistenceLogger.java:232) at org.camunda.bpm.engine.impl.db.sql.DbSqlSession.executeSchemaResource(DbSqlSession.java:854) at org.camunda.bpm.engine.impl.db.sql.DbSqlSession.executeSchemaResource(DbSqlSession.java:781) at org.camunda.bpm.engine.impl.db.sql.DbSqlSession.executeMandatorySchemaResource(DbSqlSession.java:595) at org.camunda.bpm.engine.impl.db.sql.DbSqlSession.dbSchemaCreateEngine(DbSqlSession.java:535) at org.camunda.bpm.engine.impl.db.AbstractPersistenceSession.dbSchemaUpdate(AbstractPersistenceSession.java:219) at org.camunda.bpm.engine.impl.SchemaOperationsProcessEngineBuild.execute(SchemaOperationsProcessEngineBuild.java:56) at org.camunda.bpm.engine.impl.SchemaOperationsProcessEngineBuild.execute(SchemaOperationsProcessEngineBuild.java:34) at org.camunda.bpm.engine.impl.interceptor.CommandExecutorImpl.execute(CommandExecutorImpl.java:28) at org.camunda.bpm.engine.impl.interceptor.CommandContextInterceptor.execute(CommandContextInterceptor.java:110) at info.novatec.micronaut.camunda.bpm.feature.tx.MnTransactionInterceptor.lambda$execute$0(MnTransactionInterceptor.java:44) at io.micronaut.transaction.support.AbstractSynchronousTransactionManager.execute(AbstractSynchronousTransactionManager.java:135) at info.novatec.micronaut.camunda.bpm.feature.tx.MnTransactionInterceptor.execute(MnTransactionInterceptor.java:44) at org.camunda.bpm.engine.impl.interceptor.ProcessApplicationContextInterceptor.execute(ProcessApplicationContextInterceptor.java:70) at org.camunda.bpm.engine.impl.interceptor.CommandCounterInterceptor.execute(CommandCounterInterceptor.java:35) at org.camunda.bpm.engine.impl.interceptor.LogInterceptor.execute(LogInterceptor.java:33) at org.camunda.bpm.engine.impl.ProcessEngineImpl.executeSchemaOperations(ProcessEngineImpl.java:148) at org.camunda.bpm.engine.impl.ProcessEngineImpl.