导入通用 JDBC 数据¶
JDBC 数据是指用 JDBC 接口访问的各类数据库的数据的统称。本文以 MySQL 数据库为例说明如何使用 Exchange 将 JDBC 数据导入 NebulaGraph。
数据集¶
本文以 basketballplayer 数据集为例。
在本示例中,该数据集已经存入 MySQL 中名为basketball
的数据库中,以player
、team
、follow
和serve
四个表存储了所有点和边的信息。以下为各个表的结构。
mysql> desc player;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| playerid | int | YES | | NULL | |
| age | int | YES | | NULL | |
| name | varchar(30) | YES | | NULL | |
+----------+-------------+------+-----+---------+-------+
mysql> desc team;
+--------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+-------------+------+-----+---------+-------+
| teamid | int | YES | | NULL | |
| name | varchar(30) | YES | | NULL | |
+--------+-------------+------+-----+---------+-------+
mysql> desc follow;
+------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------+-------------+------+-----+---------+-------+
| src_player | int | YES | | NULL | |
| dst_player | int | YES | | NULL | |
| degree | int | YES | | NULL | |
+------------+-------------+------+-----+---------+-------+
mysql> desc serve;
+------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------+-------------+------+-----+---------+-------+
| playerid | int | YES | | NULL | |
| teamid | int | YES | | NULL | |
| start_year | int | YES | | NULL | |
| end_year | int | YES | | NULL | |
+------------+-------------+------+-----+---------+-------+
环境配置¶
本文示例在 MacOS 下完成,以下是相关的环境配置信息:
- 硬件规格:
- CPU:1.7 GHz Quad-Core Intel Core i7
- 内存:16 GB
- Spark:2.3.0,单机版
- Hadoop:2.9.2,伪分布式部署
- NebulaGraph:3.4.3。使用 Docker Compose 部署。
前提条件¶
开始导入数据之前,用户需要确认以下信息:
-
已经安装部署 NebulaGraph 并获取如下信息:
- Graph 服务和 Meta 服务的的 IP 地址和端口。
- 拥有 NebulaGraph 写权限的用户名和密码。
- 已经编译 Exchange。详情请参见编译 Exchange。本示例中使用 Exchange 3.4.0。
- 已经安装 Spark。
- 了解 NebulaGraph 中创建 Schema 的信息,包括 Tag 和 Edge type 的名称、属性等。
- 如果文件存储在 HDFS 上,需要确认 Hadoop 服务运行正常。
- 如果文件存储在本地且 NebulaGraph 是集群架构,需要在集群每台机器本地相同目录下放置文件。
操作步骤¶
步骤 1:在 NebulaGraph 中创建 Schema¶
分析文件中的数据,按以下步骤在 NebulaGraph 中创建 Schema:
-
确认 Schema 要素。NebulaGraph 中的 Schema 要素如下表所示。
要素 名称 属性 Tag player
name string, age int
Tag team
name string
Edge Type follow
degree int
Edge Type serve
start_year int, end_year int
-
使用 NebulaGraph Console 创建一个图空间 basketballplayer,并创建一个 Schema,如下所示。
## 创建图空间 nebula> CREATE SPACE basketballplayer \ (partition_num = 10, \ replica_factor = 1, \ vid_type = FIXED_STRING(30)); ## 选择图空间 basketballplayer nebula> USE basketballplayer; ## 创建 Tag player nebula> CREATE TAG player(name string, age int); ## 创建 Tag team nebula> CREATE TAG team(name string); ## 创建 Edge type follow nebula> CREATE EDGE follow(degree int); ## 创建 Edge type serve nebula> CREATE EDGE serve(start_year int, end_year int);
更多信息,请参见快速开始。
步骤 2. 修改配置文件¶
编译 Exchange 后,复制target/classes/application.conf
文件设置 JDBC 数据源相关的配置。在本示例中,复制的文件名为jdbc_application.conf
。各个配置项的详细说明请参见配置说明。
{
# Spark 相关配置
spark: {
app: {
name: NebulaGraph Exchange 3.4.0
}
driver: {
cores: 1
maxResultSize: 1G
}
executor: {
memory:1G
}
cores: {
max: 16
}
}
# NebulaGraph 相关配置
nebula: {
address:{
# 指定 Graph 服务和所有 Meta 服务的 IP 地址和端口。
# 如果有多台服务器,地址之间用英文逗号(,)分隔。
# 格式:"ip1:port","ip2:port","ip3:port"
graph:["127.0.0.1:9669"]
#任意一个 Meta 服务的地址。
#如果您的 NebulaGraph 在虚拟网络中,如k8s,请配置 Leader Meta的地址。
meta:["127.0.0.1:9559"]
}
# 指定拥有 NebulaGraph 写权限的用户名和密码。
user: root
pswd: nebula
# 指定图空间名称。
space: basketballplayer
connection: {
timeout: 3000
retry: 3
}
execution: {
retry: 3
}
error: {
max: 32
output: /tmp/errors
}
rate: {
limit: 1024
timeout: 1000
}
}
# 处理点
tags: [
# 设置 Tag player 相关信息。
{
# 指定 NebulaGraph 中定义的 Tag 名称。
name: player
type: {
# 指定数据源,使用 JDBC。
source: jdbc
# 指定如何将点数据导入 NebulaGraph:Client 或 SST。
sink: client
}
# JDBC 数据源的 URL。示例为 MySql 数据库。
url:"jdbc:mysql://127.0.0.1:3306/basketball?useUnicode=true&characterEncoding=utf-8"
# JDBC 驱动。
driver:"com.mysql.cj.jdbc.Driver"
# 数据库用户名和密码。
user:root
password:"12345"
table:player
sentence:"select playerid, age, name from player order by playerid"
# (可选)多连接读取参数 参见 https://spark.apache.org/docs/latest/sql-data-sources-jdbc.html
partitionColumn:playerid # 可选。数值类型必须为数字、日期或时间戳。
lowerBound:1 # 可选
upperBound:5 # 可选
numPartitions:5 # 可选
fetchSize:2 # 每次请求数据库要读取的行数。
# 在 fields 里指定 player 表中的列名称,其对应的 value 会作为 NebulaGraph 中指定属性。
# fields 和 nebula.fields 里的配置必须一一对应。
# 如果需要指定多个列名称,用英文逗号(,)隔开。
fields: [age,name]
nebula.fields: [age,name]
# 指定表中某一列数据为 NebulaGraph 中点 VID 的来源。
vertex: {
field:playerid
}
# 单批次写入 NebulaGraph 的数据条数。
batch: 256
# Spark 分区数量
partition: 32
}
# 设置 Tag team 相关信息。
{
name: team
type: {
source: jdbc
sink: client
}
url:"jdbc:mysql://127.0.0.1:3306/basketball?useUnicode=true&characterEncoding=utf-8"
driver:"com.mysql.cj.jdbc.Driver"
user:root
password:"12345"
table:team
sentence:"select teamid, name from team order by teamid"
partitionColumn:teamid
lowerBound:1
upperBound:5
numPartitions:5
fetchSize:2
fields: [name]
nebula.fields: [name]
vertex: {
field: teamid
}
batch: 256
partition: 32
}
]
# 处理边数据
edges: [
# 设置 Edge type follow 相关信息
{
# NebulaGraph 中对应的 Edge type 名称。
name: follow
type: {
# 指定数据源文件格式,设置为 JDBC。
source: jdbc
# 指定边数据导入 NebulaGraph 的方式,
# 指定如何将点数据导入 NebulaGraph:Client 或 SST。
sink: client
}
url:"jdbc:mysql://127.0.0.1:3306/basketball?useUnicode=true&characterEncoding=utf-8"
driver:"com.mysql.cj.jdbc.Driver"
user:root
password:"12345"
table:follow
sentence:"select src_player,dst_player,degree from follow order by src_player"
partitionColumn:src_player
lowerBound:1
upperBound:5
numPartitions:5
fetchSize:2
# 在 fields 里指定 follow 表中的列名称,其对应的 value 会作为 NebulaGraph 中指定属性。
# fields 和 nebula.fields 里的配置必须一一对应。
# 如果需要指定多个列名称,用英文逗号(,)隔开。
fields: [degree]
nebula.fields: [degree]
# 在 source 里,将 follow 表中某一列作为边的起始点数据源。
# 在 target 里,将 follow 表中某一列作为边的目的点数据源。
source: {
field: src_player
}
target: {
field: dst_player
}
# 指定一个列作为 rank 的源(可选)。
#ranking: rank
# 单批次写入 NebulaGraph 的数据条数。
batch: 256
# Spark 分区数量
partition: 32
}
# 设置 Edge type serve 相关信息
{
name: serve
type: {
source: jdbc
sink: client
}
url:"jdbc:mysql://127.0.0.1:3306/basketball?useUnicode=true&characterEncoding=utf-8"
driver:"com.mysql.cj.jdbc.Driver"
user:root
password:"12345"
table:serve
sentence:"select playerid,teamid,start_year,end_year from serve order by playerid"
partitionColumn:playerid
lowerBound:1
upperBound:5
numPartitions:5
fetchSize:2
fields: [start_year,end_year]
nebula.fields: [start_year,end_year]
source: {
field: playerid
}
target: {
field: teamid
}
# 指定一个列作为 rank 的源(可选)。
#ranking: rank
batch: 256
partition: 32
}
]
}
步骤 4:向 NebulaGraph 导入数据¶
运行如下命令将 JDBC 数据导入到 NebulaGraph 中。关于参数的说明,请参见导入命令参数。
${SPARK_HOME}/bin/spark-submit --master "local" --class com.vesoft.nebula.exchange.Exchange <nebula-exchange-3.4.0.jar_path> -c <jdbc_application.conf_path>
Note
JAR 包有两种获取方式:自行编译或者从 maven 仓库下载。
示例:
${SPARK_HOME}/bin/spark-submit --master "local" --class com.vesoft.nebula.exchange.Exchange /root/nebula-echange/nebula-exchange/target/nebula-exchange-3.4.0.jar -c /root/nebula-exchange/nebula-exchange/target/classes/jdbc_application.conf
用户可以在返回信息中搜索batchSuccess.<tag_name/edge_name>
,确认成功的数量。例如batchSuccess.follow: 300
。
步骤 5:(可选)验证数据¶
用户可以在 NebulaGraph 客户端(例如 NebulaGraph Studio)中执行查询语句,确认数据是否已导入。例如:
LOOKUP ON player YIELD id(vertex);
用户也可以使用命令 SHOW STATS
查看统计数据。
步骤 6:(如有)在 NebulaGraph 中重建索引¶
导入数据后,用户可以在 NebulaGraph 中重新创建并重建索引。详情请参见索引介绍。