Hi!
Thanks for your reply. I have seen that in ACT_GE_BYTEARRAY are only stored my *.BPMN (and a .PNG that I generate for each BPMN), but no JSON objects. This is the error that I can see when JSONs are too large:
Caused by: org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column
### The error may involve org.activiti.engine.impl.persistence.entity.VariableInstanceEntity.insertVariableInstance-Inline
### The error occurred while setting parameters
### SQL: insert into ACT_RU_VARIABLE (ID_, REV_, TYPE_, NAME_, PROC_INST_ID_, EXECUTION_ID_, TASK_ID_, BYTEARRAY_ID_, DOUBLE_, LONG_ , TEXT_, TEXT2_) values ( ?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
I don't understand why it is complaining about LONG value … The only thing I know is that changing the TEXT2_ column to CLOB solves the error.
Thanks!