Available as of Camel 2.3
HawtDB is a very lightweight and embedable key value database. It allows together with Camel to provide persistent support for various Camel features such as Aggregator.
Current features it provides:
HawtDBAggregationRepository is an AggregationRepository which on the fly persists the aggregated messages. This ensures that you will not loose messages, as the default aggregator will use an in memory only AggregationRepository.
It has the following options:
Option | Type | Description |
---|---|---|
repositoryName | String | A mandatory repository name. Allows you to use a shared HawtDBFile for multiple repositories. |
persistentFileName | String | Filename for the persistent storage. If no file exists on startup a new file is created. |
bufferSize | Integer | The size of the memory segment buffer which is mapped to the file store. By default its 64mb. The value is in bytes. |
sync | boolean | Whether or not the HawtDBFile should sync on write or not. Default is false. This option is only in use if persistentFileName is used. |
hawtDBFile | HawtDBFile | Use an existing configured org.apache.camel.component.hawtdb.HawtDBFile instance. |
returnOldExchange | boolean | Whether the get operation should return the old existing Exchange if any existed. By default this option is false to optimize as we do not need the old exchange when aggregating. |
useRecovery | boolean | Whether or not recovery is enabled. This option is by default false. You can enable this to let Camel Aggregator automatic recover failed aggregated exchange and have them resubmitted. |
checkInterval | long | If recovery is enabled then a background task is run every x time to scan for failed exchanges to recover and resubmit. By default this interval is 5000 millis. |
The repositoryName option must be provided. Then either the persistentFileName or the hawtDBFile must be provided.
HawtDBAggregationRepository will only preserve any Serializable compatible data types. If a data type is not such a type its dropped and a WARN is logged. And it only persists the Message body and the Message headers. The Exchange properties are not persisted.
In this example we want to persist aggregated messages in the target/data/hawtdb.dat file.
public void configure() throws Exception { // create the hawtdb repo HawtDBAggregationRepository<String> repo = new HawtDBAggregationRepository<String>("repo1", "target/data/hawtdb.dat"); // here is the Camel route where we aggregate from("direct:start") .aggregate(header("id"), new MyAggregationStrategy()) // use our created hawtdb repo as aggregation repository .completionSize(5).aggregationRepository(repo) .to("mock:aggregated"); }
The same example but using Spring XML instead:
<!-- a persistent aggregation repository using camel-hawtdb --> <bean id="repo" class="org.apache.camel.component.hawtdb.HawtDBAggregationRepository"> <!-- store the repo in the hawtdb.dat file --> <property name="persistentFileName" value="target/data/hawtdb.dat"/> <!-- and use repo2 as the repository name --> <property name="repositoryName" value="repo2"/> </bean> <!-- aggregate the messages using this strategy --> <bean id="myAggregatorStrategy" class="org.apache.camel.component.hawtdb.HawtDBSpringAggregateTest$MyAggregationStrategy"/> <!-- this is the camel routes --> <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> <route> <from uri="direct:start"/> <!-- aggregate using our strategy and hawtdb repo, and complete when we have 5 messages aggregated --> <aggregate strategyRef="myAggregatorStrategy" aggregationRepositoryRef="repo" completionSize="5"> <!-- correlate by header with the key id --> <correlationExpression><header>id</header></correlationExpression> <!-- send aggregated messages to the mock endpoint --> <to uri="mock:aggregated"/> </aggregate> </route> </camelContext>
To use HawtDB in your camel routes you need to add the a dependency on camel-hawtdb.
If you use maven you could just add the following to your pom.xml, substituting the version number for the latest & greatest release (see the download page for the latest versions).
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-hawtdb</artifactId> <version>2.3.0</version> </dependency>