e04ed9c211
CF: Deploy Dev Docs / deploy (push) Has been cancelled
Sync Labels / build (push) Has been cancelled
tests / unit tests (macos-latest) (push) Has been cancelled
tests / unit tests (windows-latest) (push) Has been cancelled
tests / unit tests (ubuntu-latest) (push) Has been cancelled
2.2 KiB
2.2 KiB
title, linkTitle, type, weight, description, no_list
| title | linkTitle | type | weight | description | no_list |
|---|---|---|---|---|---|
| ArcadeDB Source | Source | docs | 1 | ArcadeDB is a multi-model database with Bolt protocol support. | true |
About
ArcadeDB is a multi-model database that supports graph (Cypher), document (SQL), key-value, and time-series data in one engine. It exposes a Bolt protocol endpoint compatible with the Neo4j driver.
Available Tools
{{< list-tools >}}
Requirements
Database User
This source uses standard authentication. Create an ArcadeDB user (or use the
root user) that can connect over Bolt.
Example
kind: source
name: my-arcadedb-source
type: arcadedb
uri: bolt://localhost:7687
user: root
password: ${PASSWORD}
database: "mydb"
{{< notice tip >}} Use environment variable replacement with the format ${ENV_NAME} instead of hardcoding your secrets into the configuration file. {{< /notice >}}
Reference
| field | type | required | description |
|---|---|---|---|
| type | string | true | Must be "arcadedb". |
| uri | string | true | Bolt URI (e.g. "bolt://localhost:7687"). |
| user | string | true | ArcadeDB user (e.g. "root"). |
| password | string | true | Password for the ArcadeDB user. |
| database | string | true | Database name to connect to. |
| httpUri | string | false | Optional override for the ArcadeDB HTTP API base URL (e.g. "http://localhost:2480"). |
| httpScheme | string | false | Optional scheme override for the ArcadeDB HTTP API. Defaults to "http". |
| httpPort | integer | false | Optional port override for the ArcadeDB HTTP API. Defaults to 2480. |