this.searchCriteria.setEventMask( EventType.ALL_EVENT_TYPES_MASK );
// Create the journal file, or open it of it exists
File logDir = directoryService.getInstanceLayout().getLogDirectory();
journalFile = new File( logDir, "journalRepl." + replicaId );
recman = new BaseRecordManager( journalFile.getAbsolutePath() );
SerializableComparator<String> comparator = new SerializableComparator<String>( SchemaConstants.CSN_ORDERING_MATCH_MR_OID );
comparator.setSchemaManager( schemaManager );
journal = new JdbmTable<String, ReplicaEventMessage>( schemaManager, "replication", recman, comparator,