Hello,
I have a problem with kitchen, my job is processing around 20000 rows. The transformation includes an input table step and an sql step including an update statement (updating 3 fields):
"
update table1
set (F1, F2, F3) =
(select Table2.name, Table2.id, Table2.kurzzeichen from Table2 where Table2.id = Table1.ober5)
where ober5 != 0;
"
when kitchen is called it is taking along time (around 7 H) and often it is not stopping at all (Java process is ruining always and we have to end the process from task-manager) causing the database to be full (due to archive log)
is there any suggestion what to do, please?
is there anyway to force to stop after a given time (like a timeout, after 6 H to be stopped)
thanks in advanced
I have a problem with kitchen, my job is processing around 20000 rows. The transformation includes an input table step and an sql step including an update statement (updating 3 fields):
"
update table1
set (F1, F2, F3) =
(select Table2.name, Table2.id, Table2.kurzzeichen from Table2 where Table2.id = Table1.ober5)
where ober5 != 0;
"
when kitchen is called it is taking along time (around 7 H) and often it is not stopping at all (Java process is ruining always and we have to end the process from task-manager) causing the database to be full (due to archive log)
is there any suggestion what to do, please?
is there anyway to force to stop after a given time (like a timeout, after 6 H to be stopped)
thanks in advanced