blog

12 August 2013

Purge Record&Replay data in WMB8 and IIB9

by Anton Piatek

If you have followed my article on Record and Replay in WMB 8 (also applies to IIB 9), or perhaps you are already using Record and Replay in your Broker deployment, you  may have wondered how to clear out the data which will build up over time when recording.

As there are no official tool or instructions for doing this, I thought I would take a moment to give some brief instructions on how you can achieve this yourself.

At the moment, in WMB 8 and IIB 9 only two tables are used to store recorded data: “wmb_msgs” stores each recorded message and some metadata, and “wmb_binary_data” is used if a message body or exception list was recorded. As the tables have no enforced referential integrity all we have to do when deleting data is remove it from the tables in the correct order. For example you could use the following commands to remove messages older than 15th November 2011

DELETE FROM wmb_binary_data WHERE wmb_msgkey IN (SELECT wmb_msgs.wmb_msgkey FROM wmb_msgs WHERE event_timestamp < '2011-11-15 14:54:35.121')
DELETE FROM wmb_msgs WHERE event_timestamp < '2011-11-15 14:54:35.121'

As you will likely want a more complicated WHERE clause, and to check it carefully, you may want to create a sql instruction file, for example with the following content:

-- connect to DB
CONNECT TO rrrdb
-- set an alternate schema if the default doesn't apply to you
-- SET SCHEMA WMB
-- now do our deletes
DELETE FROM wmb_binary_data WHERE wmb_msgkey IN (SELECT wmb_msgs.wmb_msgkey FROM wmb_msgs WHERE event_timestamp < '2011-11-15 14:54:35.121')
DELETE FROM wmb_msgs WHERE event_timestamp < '2011-11-15 14:54:35.121'

Save this in a file, and you can then edit it and check it carefully, then run it with db2 -f purge.sql

You will notice that we are using strings as our timestamps. This is actually correct, as they are stored as VARCHAR in the table as we couldn’t think of any reason to parse then and turn then into timestamp types in the database, so instead went for the slightly better performing option of a VARCHAR. This of course means you must format your dates in the full ISO standard, with YYYY-MM-DD, always using two digit months and days.

You can also add your own additions to the where clause, just make sure you add it to both DELETE statements.

You don’t have to do this on a db2 command line of course, you could write your own script or application to run the database commands for you, and even add it to a cronjob if desired.

N.B. I have only tested this with db2, though I am pretty certain the same SQL should work in any other database supported by Record & Replay.

(Also posted on the official IBM Integration Bus blog)

tags: IBM - iib - integrationbus - messagebroker - wmb