You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hugegraph.apache.org by GitBox <gi...@apache.org> on 2022/04/26 05:21:18 UTC

[GitHub] [incubator-hugegraph-doc] javeme commented on a diff in pull request #113: Translate hugegraph-loader.md into english

javeme commented on code in PR #113:
URL: https://github.com/apache/incubator-hugegraph-doc/pull/113#discussion_r858275401


##########
content/en/docs/quickstart/hugegraph-loader.md:
##########
@@ -4,252 +4,249 @@ linkTitle: "Load data with HugeGraph-Loader"
 weight: 2
 ---
 
-### 1 HugeGraph-Loader概述
+### 1 HugeGraph-Loader Overview
 
-HugeGraph-Loader 是 HugeGragh 的数据导入组件,能够将多种数据源的数据转化为图的顶点和边并批量导入到图数据库中。
+HugeGraph-Loader is the data import component of HugeGragh, which can convert data from various data sources into graph vertices and edges and import them into the graph database in batches.
 
-目前支持的数据源包括:
+Currently supported data sources include:
+- Local disk file or directory, supports TEXT, CSV and JSON format files, supports compressed files
+- HDFS file or directory, supports compressed files
+- Mainstream relational databases, such as MySQL, PostgreSQL, Oracle, SQL Server
 
-- 本地磁盘文件或目录,支持 TEXT、CSV 和 JSON 格式的文件,支持压缩文件
-- HDFS 文件或目录,支持压缩文件
-- 主流关系型数据库,如 MySQL、PostgreSQL、Oracle、SQL Server
+Local disk files and HDFS files support resumable uploads.
 
-本地磁盘文件和 HDFS 文件支持断点续传。
+It will be explained in detail later.
 
-后面会具体说明。
+> Note: HugeGraph-Loader requires HugeGraph Server service, please refer to [HugeGraph-Server Quick Start](/docs/quickstart/hugegraph-server) to download and start Server
 
-> 注意:使用 HugeGraph-Loader 需要依赖 HugeGraph Server 服务,下载和启动 Server 请参考 [HugeGraph-Server Quick Start](/docs/quickstart/hugegraph-server)
+### 2 Get HugeGraph-Loader
 
-### 2 获取 HugeGraph-Loader
+There are two ways to get HugeGraph-Loader:
 
-有两种方式可以获取 HugeGraph-Loader:
+- Download the compiled tarball
+- Clone source code to compile and install

Review Comment:
   Clone source code then compile and install



##########
content/en/docs/quickstart/hugegraph-loader.md:
##########
@@ -4,252 +4,249 @@ linkTitle: "Load data with HugeGraph-Loader"
 weight: 2
 ---
 
-### 1 HugeGraph-Loader概述
+### 1 HugeGraph-Loader Overview
 
-HugeGraph-Loader 是 HugeGragh 的数据导入组件,能够将多种数据源的数据转化为图的顶点和边并批量导入到图数据库中。
+HugeGraph-Loader is the data import component of HugeGragh, which can convert data from various data sources into graph vertices and edges and import them into the graph database in batches.
 
-目前支持的数据源包括:
+Currently supported data sources include:
+- Local disk file or directory, supports TEXT, CSV and JSON format files, supports compressed files
+- HDFS file or directory, supports compressed files
+- Mainstream relational databases, such as MySQL, PostgreSQL, Oracle, SQL Server
 
-- 本地磁盘文件或目录,支持 TEXT、CSV 和 JSON 格式的文件,支持压缩文件
-- HDFS 文件或目录,支持压缩文件
-- 主流关系型数据库,如 MySQL、PostgreSQL、Oracle、SQL Server
+Local disk files and HDFS files support resumable uploads.
 
-本地磁盘文件和 HDFS 文件支持断点续传。
+It will be explained in detail later.

Review Comment:
   It will be explained in detail below.



##########
content/en/docs/quickstart/hugegraph-loader.md:
##########
@@ -4,252 +4,249 @@ linkTitle: "Load data with HugeGraph-Loader"
 weight: 2
 ---
 
-### 1 HugeGraph-Loader概述
+### 1 HugeGraph-Loader Overview
 
-HugeGraph-Loader 是 HugeGragh 的数据导入组件,能够将多种数据源的数据转化为图的顶点和边并批量导入到图数据库中。
+HugeGraph-Loader is the data import component of HugeGragh, which can convert data from various data sources into graph vertices and edges and import them into the graph database in batches.
 
-目前支持的数据源包括:
+Currently supported data sources include:
+- Local disk file or directory, supports TEXT, CSV and JSON format files, supports compressed files
+- HDFS file or directory, supports compressed files
+- Mainstream relational databases, such as MySQL, PostgreSQL, Oracle, SQL Server
 
-- 本地磁盘文件或目录,支持 TEXT、CSV 和 JSON 格式的文件,支持压缩文件
-- HDFS 文件或目录,支持压缩文件
-- 主流关系型数据库,如 MySQL、PostgreSQL、Oracle、SQL Server
+Local disk files and HDFS files support resumable uploads.
 
-本地磁盘文件和 HDFS 文件支持断点续传。
+It will be explained in detail later.
 
-后面会具体说明。
+> Note: HugeGraph-Loader requires HugeGraph Server service, please refer to [HugeGraph-Server Quick Start](/docs/quickstart/hugegraph-server) to download and start Server
 
-> 注意:使用 HugeGraph-Loader 需要依赖 HugeGraph Server 服务,下载和启动 Server 请参考 [HugeGraph-Server Quick Start](/docs/quickstart/hugegraph-server)
+### 2 Get HugeGraph-Loader
 
-### 2 获取 HugeGraph-Loader
+There are two ways to get HugeGraph-Loader:
 
-有两种方式可以获取 HugeGraph-Loader:
+- Download the compiled tarball
+- Clone source code to compile and install
 
-- 下载已编译的压缩包
-- 克隆源码编译安装
+#### 2.1 Download the compiled archive
 
-#### 2.1 下载已编译的压缩包
-
-下载最新版本的 HugeGraph-Loader release 包:
+Download the latest version of the HugeGraph-Loader release package:
 
 ```bash
 wget https://github.com/hugegraph/hugegraph-loader/releases/download/v${version}/hugegraph-loader-${version}.tar.gz
 tar zxvf hugegraph-loader-${version}.tar.gz
 ```
 
-#### 2.2 克隆源码编译安装
+#### 2.2 Clone source code to compile and install
 
-克隆最新版本的 HugeGraph-Loader 源码包:
+Clone the latest version of HugeGraph-Loader source package:
 
 ```bash
 $ git clone https://github.com/hugegraph/hugegraph-loader.git
 ```
 
-由于Oracle ojdbc license的限制,需要手动安装ojdbc到本地maven仓库。
-访问[Oracle jdbc 下载](https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html) 页面。选择Oracle Database 12c Release 2 (12.2.0.1) drivers,如下图所示。
+Due to the license limitation of the `Oracle OJDBC`, you need to manually install ojdbc to the local maven repository.
+Visit the [Oracle jdbc downloads](https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html) page. Select Oracle Database 12c Release 2 (12.2.0.1) drivers, as shown in the following figure.
 
 <center>
   <img src="/docs/images/oracle-download.png" alt="image">
 </center>
 
 
-打开链接后,选择“ojdbc8.jar”, 如下图所示。
+After opening the link, select "ojdbc8.jar" as shown below.
 
 <center>
   <img src="/docs/images/ojdbc8.png" alt="image">
 </center>
 
 
- 把ojdbc8安装到本地maven仓库,进入``ojdbc8.jar``所在目录,执行以下命令。
+ Install ojdbc8 to the local maven repository, enter the directory where ``ojdbc8.jar`` is located, and execute the following command.
 ```
 mvn install:install-file -Dfile=./ojdbc8.jar -DgroupId=com.oracle -DartifactId=ojdbc8 -Dversion=12.2.0.1 -Dpackaging=jar
 ```
 
-编译生成 tar 包:
+Compile and generate tar package:
 
 ```bash
 cd hugegraph-loader
 mvn clean package -DskipTests
 ```
 
-### 3 使用流程
-
-使用 HugeGraph-Loader 的基本流程分为以下几步:
+### 3 How to use
+The basic process of using HugeGraph-Loader is divided into the following steps:
+- Write graph models

Review Comment:
   graph schema



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org