Seven INSTERT sesssions do operation in the same time. This is INSERT:
insert into alf_node_properties
| (
| node_id, qname_id, locale_id, list_index,
| actual_type_n, persisted_type_n,
| boolean_value, long_value, float_value, double_value, string_value, serializable_value
| )
| values
| (
| $1, $2, $3, $4,
| $5, $6,
| $7, $8, $9, $10, $11, $12
| )
In db its look like:
-[ RECORD 43 ]
datid | 16432
datname | alfresco
pid | 24128
usesysid | 27270
usename | alfrescousr
application_name |
client_addr | 126.177.150.12
client_hostname |
client_port | 42312
backend_start | 2016-01-22 11:10:59.98938+01
xact_start | 2016-01-22 11:11:12.086708+01
query_start | 2016-01-22 11:11:12.930515+01
state_change | 2016-01-22 11:11:12.931278+01
waiting | f
state | idle in transaction
query | insert into alf_node_properties
| (
| node_id, qname_id, locale_id, list_index,
| actual_type_n, persisted_type_n,
| boolean_value, long_value, float_value, double_value, string_value, serializable_value
| )
| values
| (
| $1, $2, $3, $4,
| $5, $6,
| $7, $8, $9, $10, $11, $12
I know that retrying stuff is normal for alfresco and in DB configuration file I can disable to record this error but… when it happens the DB connections are grow fast.
So what do You need to know to help me?