How long can executed CLOB migration after update Build Forge?
One answer
The Character Large Object (CLOB) conversion is dependent on many different factors. This process runs in the background and depending on the amount of data and the all around production load of your Build Forge Server. This could take a very long time. The data is being moved from the bf_logs table and re-instantiated using CLOB methods. The transfer is done 100 bf_log rows at a time
Since all new data is recorded in the new format and since rows are deleted from bf_logs after they are transferred the number of rows in bf_logs, as determined by:
SELECT COUNT(bf_id) FROM bf_logs;
should get smaller over time. (this is a way to check the progress)
This overall process can take days and or weeks. 5 days is not uncommon and not a cause for concern.
Thanks!