From 7859190958b8b03ca02846a1b254148740f63a4e Mon Sep 17 00:00:00 2001 From: shimingxy Date: Tue, 9 Apr 2019 22:56:16 +0800 Subject: [PATCH] RM --- README.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0662d8e..24b0260 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,17 @@ Blazer意为**传播者**,主要实现不同数据库之间的数据同步, 5. 目前支持数据有mysql/MariaDB,Greenplum,Oracle,DB2,PostgreSQL; +6. 支持JDK支持平台,JDK1.8+ + ------------ 项目基于Java Spring Framework框架,简化了系统的配置,引入"管道"(PipeLine)的概念,一个管道包含多个任务,任务可以是数据同步、导入、导出或者表结构的导出。 - 在不同的XML中引入不同管道任务,实现不同的功能,其中pipeLine.xml描述管道的功能,需要根据需求进行定义,可以基于以下的命令内容copy出不同脚本功能。 + 在不同的XML中引入不同管道任务,实现不同的功能,其中pipeLine.xml描述管道的功能,需要根据需求进行定义,可以基于以下的命令内容copy出不同脚本功能,传入不同的"管道"实现不同的功能。 + +------------ +#### 脚本 PipeLineRunner.bat ````bash @echo off @@ -117,8 +122,8 @@ ${JAVA_EXEC} ${JAVA_OPTS} -classpath ${JAVA_CLASSPATH} ${JAVA_MAINCLASS} --confi echo run finished ``` - -###### 实现Oracle到greenplum数据同步pipeLine +#### "管道"(PipeLine) +###### 1、实现Oracle到greenplum数据同步pipeLine ```xml - @@ -183,7 +187,7 @@ echo run finished ``` -###### 数据库数据导出到文件(csv,xlsx,xls)pipeLine +###### 2、数据库数据导出到文件(csv,xlsx,xls)pipeLine ```xml - @@ -266,7 +269,7 @@ echo run finished ``` -###### 数据文件导入到数据库 pipeLine +###### 3、数据文件导入到数据库 pipeLine ```xml ``` -###### 数据表结构导出成制定数据库DDL pipeLine +###### 4、数据表结构导出特定数据库DDL pipeLine ```xml - + /pipeline/config/applicationConfig.properties @@ -421,6 +424,5 @@ echo run finished - ``` \ No newline at end of file -- GitLab