Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
Camel CouchDB componentAvailable as of Camel 2.11 The couchdb: component allows you to treat CouchDB instances as a producer or consumer of messages. Using the lightweight LightCouch API, this camel component has the following features:
Maven users will need to add the following dependency to their <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-couchdb</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency> URI formatcouchdb:http://hostname[:port]/database?[options] Where hostname is the hostname of the running couchdb instance. Port is optional and if not specified then defaults to 5984. Options
HeadersThe following headers are set on exchanges during message transport.
Headers are set by the consumer once the message is received. The producer will also set the headers for downstream processors once the insert/update has taken place. Any headers set prior to the producer are ignored. That means for example, if you set CouchDbId as a header, it will not be used as the id for insertion, the id of the document will still be used. Message BodyThe component will use the message body as the document to be inserted. If the body is an instance of String, then it will be marshalled into a GSON object before insert. This means that the string must be valid JSON or the insert / update will fail. If the body is an instance of a com.google.gson.JsonElement then it will be inserted as is. Otherwise the producer will throw an exception of unsupported body type. SamplesFor example if you wish to consume all inserts, updates and deletes from a CouchDB instance running locally, on port 9999 then you could use the following: from("couchdb:http://localhost:9999").process(someProcessor); If you were only interested in deletes, then you could use the following from("couchdb:http://localhost:9999?updates=false").process(someProcessor); If you wanted to insert a message as a document, then the body of the exchange is used from("someProducingEndpoint").process(someProcessor).to("couchdb:http://localhost:9999") |