ArangoDb
Since Camel 3.5
Only producer is supported
The ArangoDb component is a ArangoDb client that uses the arango java driver to perform queries on collections and graphs in the ArangoDb database.
Maven users will need to add the following dependency to their pom.xml
for this component:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-arangodb</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
Configuring Options
Camel components are configured on two separate levels:
-
component level
-
endpoint level
Configuring Component Options
The component level is the highest level which holds general and common configurations that are inherited by the endpoints. For example a component may have security settings, credentials for authentication, urls for network connection and so forth.
Some components only have a few options, and others may have many. Because components typically have pre configured defaults that are commonly used, then you may often only need to configure a few options on a component; or none at all.
Configuring components can be done with the Component DSL, in a configuration file (application.properties|yaml), or directly with Java code.
Configuring Endpoint Options
Where you find yourself configuring the most is on endpoints, as endpoints often have many options, which allows you to configure what you need the endpoint to do. The options are also categorized into whether the endpoint is used as consumer (from) or as a producer (to), or used for both.
Configuring endpoints is most often done directly in the endpoint URI as path and query parameters. You can also use the Endpoint DSL and DataFormat DSL as a type safe way of configuring endpoints and data formats in Java.
A good practice when configuring options is to use Property Placeholders, which allows to not hardcode urls, port numbers, sensitive information, and other settings. In other words placeholders allows to externalize the configuration from your code, and gives more flexibility and reuse.
The following two sections lists all the options, firstly for the component followed by the endpoint.
Component Options
The ArangoDb component supports 12 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
Component configuration. | ArangoDbConfiguration | ||
Collection name, when using ArangoDb as a Document Database. Set the documentCollection name when using the CRUD operation on the document database collections (SAVE_DOCUMENT , FIND_DOCUMENT_BY_KEY, UPDATE_DOCUMENT, DELETE_DOCUMENT). | String | ||
Collection name of vertices, when using ArangoDb as a Graph Database. Set the edgeCollection name to perform CRUD operation on edges using these operations : SAVE_VERTEX, FIND_VERTEX_BY_KEY, UPDATE_VERTEX, DELETE_VERTEX. The graph attribute is mandatory. | String | ||
Graph name, when using ArangoDb as a Graph Database. Combine this attribute with one of the two attributes vertexCollection and edgeCollection. | String | ||
ArangoDB host. If host and port are default, this field is Optional. | String | ||
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | false | boolean | |
Operations to perform on ArangoDb. For the operation AQL_QUERY, no need to specify a collection or graph. Enum values:
| ArangoDbOperation | ||
ArangoDB exposed port. If host and port are default, this field is Optional. | int | ||
Collection name of vertices, when using ArangoDb as a Graph Database. Set the vertexCollection name to perform CRUD operation on vertices using these operations : SAVE_EDGE, FIND_EDGE_BY_KEY, UPDATE_EDGE, DELETE_EDGE. The graph attribute is mandatory. | String | ||
Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. | true | boolean | |
ArangoDB password. If user and password are default, this field is Optional. | String | ||
ArangoDB user. If user and password are default, this field is Optional. | String |
Endpoint Options
The ArangoDb endpoint is configured using URI syntax:
arangodb:database
with the following path and query parameters:
Query Parameters (10 parameters)
Name | Description | Default | Type |
---|---|---|---|
Collection name, when using ArangoDb as a Document Database. Set the documentCollection name when using the CRUD operation on the document database collections (SAVE_DOCUMENT , FIND_DOCUMENT_BY_KEY, UPDATE_DOCUMENT, DELETE_DOCUMENT). | String | ||
Collection name of vertices, when using ArangoDb as a Graph Database. Set the edgeCollection name to perform CRUD operation on edges using these operations : SAVE_VERTEX, FIND_VERTEX_BY_KEY, UPDATE_VERTEX, DELETE_VERTEX. The graph attribute is mandatory. | String | ||
Graph name, when using ArangoDb as a Graph Database. Combine this attribute with one of the two attributes vertexCollection and edgeCollection. | String | ||
ArangoDB host. If host and port are default, this field is Optional. | String | ||
Operations to perform on ArangoDb. For the operation AQL_QUERY, no need to specify a collection or graph. Enum values:
| ArangoDbOperation | ||
ArangoDB exposed port. If host and port are default, this field is Optional. | int | ||
Collection name of vertices, when using ArangoDb as a Graph Database. Set the vertexCollection name to perform CRUD operation on vertices using these operations : SAVE_EDGE, FIND_EDGE_BY_KEY, UPDATE_EDGE, DELETE_EDGE. The graph attribute is mandatory. | String | ||
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | false | boolean | |
ArangoDB password. If user and password are default, this field is Optional. | String | ||
ArangoDB user. If user and password are default, this field is Optional. | String |
Message Headers
The ArangoDb component supports 8 message header(s), which is/are listed below:
Name | Description | Default | Type |
---|---|---|---|
CamelArangoDbMultiUpdate (producer) Constant: | Indicates if there are multiple documents to update. If set to true, the body of the message must be a Collection of documents to update. | false | Boolean |
CamelArangoDbMultiInsert (producer) Constant: | Indicates if there are multiple documents to insert. If set to true, the body of the message must be a Collection of documents to insert. | false | Boolean |
CamelArangoDbMultiDelete (producer) Constant: | Indicates if there are multiple documents to delete. If set to true, the body of the message must be a Collection of key of documents to delete. | false | Boolean |
Constant: | The Arango key to use for the operation. | String | |
Constant: | The type of the result of the operation. | BaseDocument.class or BaseEdgeDocument.class | Class |
CamelArangoDbAqlQuery (producer) Constant: | The AQL query to execute. | String | |
CamelArangoDbAqlParameters (producer) Constant: | The key/value pairs defining the variables to bind the query to. | Map | |
CamelArangoDbAqlOptions (advanced) Constant: | The additional options that will be passed to the query API. | AqlQueryOptions |
Examples
Producer Examples
Save document on a collection
from("direct:insert")
.to("arangodb:testDb?documentCollection=collection&operation=SAVE_DOCUMENT");
And you can set as body a BaseDocument class
BaseDocument myObject = new BaseDocument(); myObject.addAttribute("a", "Foo"); myObject.addAttribute("b", 42);
Query a collection
from("direct:query")
.to("arangodb:testDb?operation=AQL_QUERY
And you can invoke an AQL Query in this way
String query = "FOR t IN " + COLLECTION_NAME + " FILTER t.value == @value"; Map<String, Object> bindVars = new MapBuilder().put("value", "hello") .get(); Exchange result = template.request("direct:query", exchange -> { exchange.getMessage().setHeader(AQL_QUERY, query); exchange.getMessage().setHeader(AQL_QUERY_BIND_PARAMETERS, bindVars); });
Spring Boot Auto-Configuration
When using arangodb with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-arangodb-starter</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
The component supports 13 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. | true | Boolean | |
Component configuration. The option is a org.apache.camel.component.arangodb.ArangoDbConfiguration type. | ArangoDbConfiguration | ||
Collection name, when using ArangoDb as a Document Database. Set the documentCollection name when using the CRUD operation on the document database collections (SAVE_DOCUMENT , FIND_DOCUMENT_BY_KEY, UPDATE_DOCUMENT, DELETE_DOCUMENT). | String | ||
Collection name of vertices, when using ArangoDb as a Graph Database. Set the edgeCollection name to perform CRUD operation on edges using these operations : SAVE_VERTEX, FIND_VERTEX_BY_KEY, UPDATE_VERTEX, DELETE_VERTEX. The graph attribute is mandatory. | String | ||
Whether to enable auto configuration of the arangodb component. This is enabled by default. | Boolean | ||
Graph name, when using ArangoDb as a Graph Database. Combine this attribute with one of the two attributes vertexCollection and edgeCollection. | String | ||
ArangoDB host. If host and port are default, this field is Optional. | String | ||
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | false | Boolean | |
Operations to perform on ArangoDb. For the operation AQL_QUERY, no need to specify a collection or graph. | ArangoDbOperation | ||
ArangoDB password. If user and password are default, this field is Optional. | String | ||
ArangoDB exposed port. If host and port are default, this field is Optional. | Integer | ||
ArangoDB user. If user and password are default, this field is Optional. | String | ||
Collection name of vertices, when using ArangoDb as a Graph Database. Set the vertexCollection name to perform CRUD operation on vertices using these operations : SAVE_EDGE, FIND_EDGE_BY_KEY, UPDATE_EDGE, DELETE_EDGE. The graph attribute is mandatory. | String |