MessageProducer producer = session.createProducer(destination);
producer.setDeliveryMode(DeliveryMode.PERSISTENT);
final LevelDBStoreViewMBean levelDBView = getLevelDBStoreMBean();
assertNotNull(levelDBView);
levelDBView.compact();
final int SIZE = 6 * 1024 * 5;
final int MSG_COUNT = 60000;
final CountDownLatch done = new CountDownLatch(MSG_COUNT);