The Apex library has support for many other data stores besides those with JDBC interface. These corresponding operators can all be found in the contrib package: https://github.com/apache/apex-malhar/tree/master/contrib.
Here are some of them:
- Apache Cassandra: Cassandra is a highly scalable, high-performance distributed database designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. It is a NoSQL database. Apex supports read from and write to Cassandra. Examples are available at https://github.com/tweise/examples/tree/master/tutorials.
- Apache HBase: HBase is a column-oriented key/value data store built to run on top of the Hadoop Distributed File ...