Sailor is a tool that provides developers with a set of pre-built functionalities in library form, allowing them to easily create integration components for the AVA platform. It enables developers to interact with the platform by:
Sailor also takes care of platform interactions under the hood, including message encryption, queuing, and other tasks, making it easier for developers to focus on building their integrations.
The following tables shows the support of the platform features in Sailor versions:
AVA follows the Semver semantics for the Sailor releases. To keep the compatibility matrix manageable, we might skip patch releases here.
All the available Node.js
Sailor versions can be retrieved directly from the
NPM or by executing the
following command on your terminal:
npm view elasticio-sailor-nodejs versions
If your component is written in Node.js then you must make the modification in
your package.json
configuration file found in the root directory of your component.
Here is where to pay particular attention:
"dependencies": {
"elasticio-sailor-nodejs": "2.7.1",
"elasticio-node": "0.0.9",
}
Features | v2.0.x | v2.1.x | v2.2.x | v2.5.x | v2.6.x-v2.7.0 |
---|---|---|---|---|---|
Request-reply | Yes | Yes | Yes | Yes | Yes |
Startup Hook | Yes | Yes | Yes | Yes | Yes |
Init Hook | Yes | Yes | Yes | Yes | Yes |
Passthrough | - | Yes | Yes | Yes | Yes |
Shutdown Hook | - | - | Yes | Yes | Yes |
Bunyan Logger | - | - | - | Yes | Yes |
Message Size | - | - | - | - | Yes |
Disable Passthrough | - | - | - | - | Yes |
Dynamic flow control | - | - | - | - | Yes |
Custom error handler | - | - | - | - | Yes |
Lightweight messages | - | - | - | - | Yes |
All the available Java Sailor versions can be retrieved from the Maven Central Repository.
If your component is written in Java you must make the modification in your
build.gradle
configuration file found in the root directory of your component.
Here is where to pay particular attention:
dependencies {
compile "io.elastic:java-api:2.1.0"
}
Features | v2.0.x | v2.1.x | v3.0.x | v3.1.x | v3.2.x | v3.3.x-v4.0.0 |
---|---|---|---|---|---|---|
Request-reply | Yes | Yes | Yes | Yes | Yes | Yes |
Startup Hook | Yes | Yes | Yes | Yes | Yes | Yes |
Init Hook | Yes | Yes | Yes | Yes | Yes | Yes |
Passthrough | - | Yes | Yes | Yes | Yes | Yes |
Shutdown Hook | - | - | Yes | Yes | Yes | Yes |
Bunyan Logger | - | Yes | Yes | Yes | Yes | Yes |
Disable Passthrough | - | Yes | Yes | Yes | Yes | Yes |
Dynamic flow control | - | - | - | Yes | Yes | Yes |
Custom error handler | - | - | - | - | - | Yes |
Lightweight messages | - | - | - | - | Yes | Yes |