In some cases, the delete command will fail due to space issue and you may see following errors
ERROR: could not access status of transaction 0
DETAIL: Could not write to file "pg_subtrans/2C55" at offset 8192: No space left on device.
In that case check for
/storage/db/pgdata/pg_log/postgresql and the bz2 files are log files
You can remove the older one just keep the one which is of latest date
As clearing log file may only free up 4-5 MB space delete command may still fail Run the truncate
command below.
TRUNCATE ALL vmo_tokereplay;
Token replay is basically a debugging feature, it allows to follow the inputs/outputs of each “token”/item in a workflow run, so either customer is using it or not, it’s additional information that doesn’t affect in any way the execution of workflows etc.
For workflows storing lots of large objects as part of the workflow execution runs, this means a large amount of vmo_tokenreplay entries.
If customer do not want to use this feature it is recommended to disable this feature to avoid excessive storage consumption you can monitor the table
The feature can be disabled by running the following command
mv /usr/lib/vco/app-server/extensions/tokenreplay-7.6.0.jar /usr/lib/vco/app-server/extensions/tokenreplay-7.6.0.disable
After running the command please start and stop the VCO services.
service vco-server stop
service vco-configurator stop
service vco-server start
service vco-configurator start