
6 Sep
2013
6 Sep
'13
7:10 p.m.
Hi Andrew, On 06.09.2013 03:42, Andrew Lau wrote:
Just for reference how'd you empty the async_tasks?
on my oVirt engine I use the following steps to empty async_tasks: aio:~# su -l postgres -bash-4.2$ psql psql (9.2.4) postgres=# \c engine engine=# select task_id from async_tasks; task_id --------- [...should return one or more rows...] engine=# delete from async_tasks; Please make sure that all tasks completed before removing these rows. Regards - Frank