Ecosystem tools overview¶
Compatibility
The core release number naming rule is X.Y.Z
, which means Major version X
, Medium version Y
, and Minor version Z
. The upgrade requirements for the client are:
- Upgrade the core from
X.Y.Z1
toX.Y.Z2
: It means that the core is fully forward compatible and is usually used for bugfixes. It is recommended to upgrade the minor version of the core as soon as possible. At this time, the client can stay not upgraded.
- Upgrade the core from
X.Y1.*
toX.Y2.*
: It means that there is some incompatibility of API, syntax, and return value. It is usually used to add functions, improve performance, and optimize code. The client needs to be upgraded toX.Y2.*
.
- Upgrade the core from
X1.*.*
toX2.*.*
: It means that there is a major incompatibility in storage formats, API, syntax, etc. You need to use tools to upgrade the core data. The client must be upgraded.
- The default core and client do not support downgrade: You cannot downgrade from
X.Y.Z2
toX.Y.Z1
.
- The release cycle of a
Y
version is about 6 months, and its maintenance and support cycle is 6 months.
- The version released at the beginning of the year is usually named
X.0.0
, and in the middle of the year, it is namedX.5.0
.
- The file name contains
RC
to indicate an unofficial version (Release Candidate
) that is only used for preview. Its maintenance period is only until the next RC or official version is released. Its client, data compatibility, etc. are not guaranteed.
- The files with
nightly
,SNAPSHOT
, or date are the nightly versions. There is no quality assurance and maintenance period.
Compatibility
All ecosystem tools of 1.x did not support Nebula Graph 2.x core.
Nebula Graph Studio¶
Nebula Graph Studio (Studio for short) is a graph database visualization tool that can be accessed through the Web. It can be used with Nebula Graph DBMS to provide one-stop services such as composition, data import, writing nGQL queries, and graph exploration. For details, see What is Nebula Graph Studio.
Note
The release of the Studio is independent of Nebula Graph core, and its naming method is also not the same as the core naming rules. The compatible relationship between them is as follows.
Nebula Graph version | Studio version(commit id) |
---|---|
2.6.1 | 3.1.0(3754219) |
Nebula Dashboard Community Edition¶
Nebula Dashboard Community Edition (Dashboard for short) is a visualization tool for monitoring the status of machines and services in the Nebula Graph cluster. For details, see What is Nebula Dashboard.
Nebula Graph version | Dashboard version (commit id) |
---|---|
2.6.1 | 1.0.2(a610013) |
Nebula Dashboard Enterprise Edition¶
Nebula Dashboard Enterprise Edition (Dashboard for short) is a visualization tool that monitors and manages the status of machines and services in Nebula Graph cluster. For details, see What is Nebula Dashboard.
Nebula Graph version | Dashboard version (commit id) |
---|---|
2.6.1 | 1.0.0(3474c78) |
Nebula Explorer¶
Nebula Explorer (Explorer for short) is a graph exploration visualization tool that can be accessed through the Web. It is used with the Nebula Graph core to visualize interaction with graph data. Users can quickly become map experts, even without experience in map data manipulation. For details, see What is Nebula Explorer.
Nebula Graph version | Explorer version (commit id) |
---|---|
2.6.1 | 2.1.0(3acdd02) |
Nebula Exchange¶
Nebula Exchange (Exchange for short) is an Apache Spark&trade application for batch migration of data in a cluster to Nebula Graph in a distributed environment. It can support the migration of batch data and streaming data in a variety of different formats. For details, see What is Nebula Exchange.
Nebula Graph version | Exchange community version (commit id) | Exchange enterprise(commit id) |
---|---|---|
2.6.1 | 2.6.1(e6d8601) | 2.6.1(8712390) |
Nebula Operator¶
Nebula Operator (Operator for short) is a tool to automate the deployment, operation, and maintenance of Nebula Graph clusters on Kubernetes. Building upon the excellent scalability mechanism of Kubernetes, Nebula Graph introduced its operation and maintenance knowledge into the Kubernetes system, which makes Nebula Graph a real cloud-native graph database. For more information, see What is Nebula Operator.
Nebula Graph version | Operator version(commit id) |
---|---|
2.6.1 | 0.9.0(ba88e28) |
Nebula Importer¶
Nebula Importer (Importer for short) is a CSV file import tool for Nebula Graph. The Importer can read the local CSV file, and then import the data into the Nebula Graph database. For details, see What is Nebula Importer.
Nebula Graph version | Importer version (commit id) |
---|---|
2.6.1 | 2.6.0(43234f3) |
Nebula Spark Connector¶
Nebula Spark Connector is a Spark connector that provides the ability to read and write Nebula Graph data in the Spark standard format. Nebula Spark Connector consists of two parts, Reader and Writer. For details, see What is Nebula Spark Connector.
Nebula Graph version | Spark Connector version (commit id) |
---|---|
2.6.1 | 2.6.1(aac22e1) |
Nebula Flink Connector¶
Nebula Flink Connector is a connector that helps Flink users quickly access Nebula Graph. It supports reading data from the Nebula Graph database or writing data read from other external data sources to the Nebula Graph database. For details, see What is Nebula Flink Connector.
Nebula Graph version | Flink Connector version (commit id) |
---|---|
2.6.1 | 2.6.1(79bd8d4) |
Nebula Algorithm¶
Nebula Algorithm (Algorithm for short) is a Spark application based on GraphX, which uses a complete algorithm tool to analyze data in the Nebula Graph database by submitting a Spark task To perform graph computing, use the algorithm under the lib repository through programming to perform graph computing for DataFrame. For details, see What is Nebula Algorithm.
Nebula Graph version | Algorithm version (commit id) |
---|---|
2.6.1 | 2.5.1(2c61ca5) |
Nebula Console¶
Nebula Console is the native CLI client of Nebula Graph. For how to use it, see Connect Nebula Graph.
Nebula Graph version | Console version (commit id) |
---|---|
2.6.1 | 2.6.0(0834198) |
Nebula Docker Compose¶
Docker Compose can quickly deploy Nebula Graph clusters. For how to use it, please refer to Docker Compose Deployment Nebula Graph.
Nebula Graph version | Docker Compose version (commit id) |
---|---|
2.6.1 | 2.6.0(a6e9d78) |
Nebula Bench¶
Nebula Bench is used to test the baseline performance data of Nebula Graph. It uses the standard data set of LDBC v0.3.3.
Nebula Graph version | Nebula Bench version (commit id) |
---|---|
2.6.1 | 1.0.0(661f871) |
API, SDK¶
Compatibility
Select the latest version of X.Y.*
which is the same as the core version.
Nebula Graph version | Language (commit id) |
---|---|
2.6.1 | C++(00e2625) |
2.6.1 | Go(02eb246) |
2.6.1 | Python(f9e8b11) |
2.6.1 | Java(064f3a4) |
Not Released¶
-
API
- [Object Graph Mapping Library (OGM, or ORM)] Java, Python (TODO: in design)
-
Monitoring
- [Graph Computing] (TODO: in coding)
-
Test
- Backup & Restore