Hi Team,
Unable to deploy Camunda 7.16 embedded spring boot application , there is a initial lock on the table ACT_GE_BYTEARRAY i see below query being executed but result is not getting return and application stands still
select B.*
from ACT_GE_BYTEARRAY B
inner join
(select B.NAME_, MAX(D.DEPLOY_TIME_) DEPLOY_TIME_
from ACT_GE_BYTEARRAY B
inner join ACT_RE_DEPLOYMENT D
on B.DEPLOYMENT_ID_ = D.ID_
where D.NAME_ = ‘workflow1’
and
(D.SOURCE_ is null or
D.SOURCE_ = ‘process application’
)
and B.NAME_ in
(
,
'BOOT-INF/classes/process.bpmn'
)
group by B.NAME_) LAST_RESOURCE
on B.NAME_ = LAST_RESOURCE.NAME_
inner join ACT_RE_DEPLOYMENT D
on B.DEPLOYMENT_ID_ = D.ID_
and D.DEPLOY_TIME_ = LAST_RESOURCE.DEPLOY_TIME_
and D.NAME_ = 'workflow1'
and
(D.SOURCE_ is null or
D.SOURCE_ = 'process application'
)
and D.TENANT_ID_ is null
order by B.ID_ asc