Error: DDL statement interfered with this statement
Hi,
when i was loading data continuously to vertica table using copy query, after some times i got this error-
" 08:16:03,557 ERROR VerticaProcessor:148 - Error in processing java.sql.SQLNonTransientException: [Vertica][VJDBC](3007) ERROR: DDL statement interfered with this statement
Caused by: com.vertica.support.exceptions.NonTransientException: [Vertica][VJDBC](3007) ERROR: DDL statement interfered with this statement"
Can anyone explain me root cause of this error?
when i was loading data continuously to vertica table using copy query, after some times i got this error-
" 08:16:03,557 ERROR VerticaProcessor:148 - Error in processing java.sql.SQLNonTransientException: [Vertica][VJDBC](3007) ERROR: DDL statement interfered with this statement
Caused by: com.vertica.support.exceptions.NonTransientException: [Vertica][VJDBC](3007) ERROR: DDL statement interfered with this statement"
Can anyone explain me root cause of this error?
0
Comments
copy A ... from local file;
copy B ... from local file;
insert into C
select .. from A ;
insert into C
select ... from B;
There were dozen such statements in all, each takes at least minutes to complete. While running the script I realized that the disk space was below the 50% mark so I started another process to drop schemas: drop schema Y1 cascade;
Later I found out some tables in the loading job didn't get populated and went back to see the logs. That is when I saw the error message (from the loading script).
For various reasons I didn't create a support ticket (e.g. not a production instance, time-consuming to reproduce, etc.) Are you sure this issue was fixed in 5.0 and on ward?