v0.1.0

This is the first release of the FlareDB Runner SDK.

The Runner SDK allows Apache Beam users to submit their Beam pipelines as a job to a FlareDB instance.

┌─────────────────────────────────────┐
│         Apache Beam Pipeline        │
│                                     │
│  ┌─────────────────────────────┐    │
│  │     flaredb-runner-sdk      │    │
│  └──────────────┬──────────────┘    │
└─────────────────┼───────────────────┘
                  │
            Submit job
                  │
                  ▼
      ┌───────────────────────┐
      │                       │
      │    FlareDB instance   │
      │                       │
      └───────────────────────┘

To use the FlareDB runner, add the Runner SDK as a dependency to your Apache Beam pipeline. It is available on Maven Central. Compatible with Apache Beam 2.69.0 and above.

<dependency>
    <groupId>com.flare-db</groupId>
    <artifactId>flaredb-runner</artifactId>
    <version>0.1.0</version>
</dependency>

To get started, see the WordCount example.