ArcadeData / arcade-connectors

Arcade Connectors - Arcade Analytics is the first Open Source Graph Analytics platform. Connect your Graph Database (Neo4j, OrientDB, Amazon Neptune, Microsoft CosmosDB, etc) and RDBMS (Oracle, MySQL, Postgres, Microsoft SQLServer, MariaDB) to create powerful dashboards.

Home Page:https://arcadeanalytics.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Codacy Badge License Actions Status Maven Central security status stability status Javadocs codecov

[WIP]

Arcade Connectors

Arcade Conecotors are a set of components for fetching data and metadata from different data stores.

Supported data stores are

  • OrientDB 2.x and 3.x
  • Neo4j
  • Memgraph
  • Gremlin end points: OrientDB, JanusGraph, Amazon Neptune, Azure CosmosDB
  • RDBMS: PostgreSQL, Mysql, MariaDB

The base module defines the interfaces and implements the SSH tunneling that could be used with each of the specialized modules. Moreover provides the factories to create connectors.

Build and test

To perform integrations, tests the projects uses Testcontainers and needs Docker installed.

To build and test just run:

mvn clean install

Modules

The common module contains the definitions of the interfaces each connector should implement, the ssh-tunnel support and factories.

Interfaces

  • DataSourceGraphDataProvider: defines methods to fetch data and perform traverse on the graph
  • DataSourceGraphProvider: defines method to extract the entire graph from the datasource (used to index the whole graph)
  • DataSourceMetadataProvider: defines methods to extract metadata from the datasource, such as vertices and edge classes/labels
  • DataSourceTableDataProvider: defines methods to provide tabular data used in charts

Factory

There is a single, generified factory: DataSourceProviderFactory To instantiate the factory for one of the provided interface:

factory = DataSourceProviderFactory(DataSourceGraphDataProvider::class.java)

The factory will scan the plugins directory and loads each implementation on a different classloader.

About

Arcade Connectors - Arcade Analytics is the first Open Source Graph Analytics platform. Connect your Graph Database (Neo4j, OrientDB, Amazon Neptune, Microsoft CosmosDB, etc) and RDBMS (Oracle, MySQL, Postgres, Microsoft SQLServer, MariaDB) to create powerful dashboards.

https://arcadeanalytics.com/

License:Apache License 2.0


Languages

Language:Java 77.8%Language:Kotlin 22.2%