2019-09-16 17:27:40 +08:00
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-logo2.png)
2019-09-16 17:23:05 +08:00
[![GitHub releases ](https://img.shields.io/github/release/cas-bigdatalab/piflow.svg )](https://github.com/cas-bigdatalab/piflow/releases)
[![GitHub stars ](https://img.shields.io/github/stars/cas-bigdatalab/piflow.svg )](https://github.com/cas-bigdatalab/piflow/stargazers)
[![GitHub forks ](https://img.shields.io/github/forks/cas-bigdatalab/piflow.svg )](https://github.com/cas-bigdatalab/piflow/network)
[![GitHub downloads ](https://img.shields.io/github/downloads/cas-bigdatalab/piflow/total.svg )](https://github.com/cas-bigdatalab/piflow/releases)
[![GitHub issues ](https://img.shields.io/github/issues/cas-bigdatalab/piflow.svg )](https://github.com/cas-bigdatalab/piflow/issues)
[![GitHub license ](https://img.shields.io/github/license/cas-bigdatalab/piflow.svg )](https://github.com/cas-bigdatalab/piflow/blob/master/LICENSE)
2019-09-11 14:21:34 +08:00
πFlow is an easy to use, powerful big data pipeline system.
2019-09-09 09:20:08 +08:00
2018-12-24 15:59:18 +08:00
## Table of Contents
- [Features ](#features )
2018-12-24 17:45:55 +08:00
- [Architecture ](#architecture )
2018-12-24 15:59:18 +08:00
- [Requirements ](#requirements )
- [Getting Started ](#getting-started )
- [Getting Help ](#getting-help )
- [Documentation ](#documentation )
## Features
- Easy to use
- provide a WYSIWYG web interface to configure data flow
2019-03-14 16:50:41 +08:00
- monitor data flow status
- check the logs of data flow
- provide checkpoints
- Strong scalability:
- Support customized development of data processing components
2018-12-24 15:59:18 +08:00
- Superior performance
- based on distributed computing engine Spark
- Powerful
- 100+ data processing components available
- include spark、mllib、hadoop、hive、hbase、solr、redis、memcache、elasticSearch、jdbc、mongodb、http、ftp、xml、csv、json, etc.
2018-12-24 17:45:55 +08:00
## Architecture
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/architecture.png)
2018-12-24 15:59:18 +08:00
## Requirements
* JDK 1.8 or newer
* Apache Maven 3.1.0 or newer
* Git Client (used during build process by 'bower' plugin)
2019-03-14 16:50:41 +08:00
* Spark-2.1.0
* Hadoop-2.6.0
2019-03-29 14:22:19 +08:00
* Hive-1.2.1
2018-12-24 15:59:18 +08:00
## Getting Started
2018-12-24 17:37:20 +08:00
To Build:
`mvn clean package -Dmaven.test.skip=true`
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing /opt/project/piflow/piflow-server/target/piflow-server-0.9.jar with /opt/project/piflow/piflow-server/target/piflow-server-0.9-shaded.jar
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] piflow-project ..................................... SUCCESS [ 4.602 s]
[INFO] piflow-core ........................................ SUCCESS [ 56.533 s]
[INFO] piflow-bundle ...................................... SUCCESS [02:15 min]
[INFO] piflow-server ...................................... SUCCESS [03:01 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 06:18 min
[INFO] Finished at: 2018-12-24T16:54:16+08:00
[INFO] Final Memory: 41M/812M
[INFO] ------------------------------------------------------------------------
To Run Piflow Server:
2019-03-14 16:50:41 +08:00
- `run piflow server on intellij` :
- edit config.properties
- build piflow to generate piflow-server.jar
- main class is cn.piflow.api.Main(remember to set SPARK_HOME)
- `run piflow server by release version` :
2019-03-29 14:22:19 +08:00
- download piflow.tar.gz: https://github.com/cas-bigdatalab/piflow/releases/download/v0.5/piflow.tar.gz
- unzip piflow.tar.gz: tar -zxvf piflow.tar.gz
2019-03-14 16:50:41 +08:00
- edit config.properties
- run start.sh
- `how to configure config.properties`
2018-12-24 17:37:20 +08:00
#server ip and port
server.ip=10.0.86.191
server.port=8002
h2.port=50002
#spark and yarn config
spark.master=yarn
spark.deploy.mode=cluster
yarn.resourcemanager.hostname=10.0.86.191
yarn.resourcemanager.address=10.0.86.191:8032
yarn.access.namenode=hdfs://10.0.86.191:9000
yarn.stagingDir=hdfs://10.0.86.191:9000/tmp/
yarn.jars=hdfs://10.0.86.191:9000/user/spark/share/lib/*.jar
yarn.url=http://10.0.86.191:8088/ws/v1/cluster/apps/
#hive config
hive.metastore.uris=thrift://10.0.86.191:9083
2019-03-14 16:50:41 +08:00
#piflow -server.jar path
2018-12-24 17:37:20 +08:00
piflow.bundle=/opt/piflowServer/piflow-server-0.9.jar
#checkpoint hdfs path
checkpoint.path=hdfs://10.0.86.89:9000/piflow/checkpoints/
2019-03-14 16:50:41 +08:00
#debug path
debug.path=hdfs://10.0.88.191:9000/piflow/debug/
#yarn url
yarn.url=http://10.0.86.191:8088/ws/v1/cluster/apps/
#the count of data shown in log
data.show=10
#h2 db port
h2.port=50002
2018-12-24 17:37:20 +08:00
To Run Piflow Web:
2019-03-18 16:15:21 +08:00
- https://github.com/cas-bigdatalab/piflow-web
2018-12-24 17:37:20 +08:00
To Use:
- command line
- flow config example
{
"flow":{
"name":"test",
"uuid":"1234",
"checkpoint":"Merge",
"stops":[
{
"uuid":"1111",
"name":"XmlParser",
"bundle":"cn.piflow.bundle.xml.XmlParser",
"properties":{
"xmlpath":"hdfs://10.0.86.89:9000/xjzhu/dblp.mini.xml",
"rowTag":"phdthesis"
}
},
{
"uuid":"2222",
"name":"SelectField",
"bundle":"cn.piflow.bundle.common.SelectField",
"properties":{
"schema":"title,author,pages"
}
},
{
"uuid":"3333",
"name":"PutHiveStreaming",
"bundle":"cn.piflow.bundle.hive.PutHiveStreaming",
"properties":{
"database":"sparktest",
"table":"dblp_phdthesis"
}
},
{
"uuid":"4444",
"name":"CsvParser",
"bundle":"cn.piflow.bundle.csv.CsvParser",
"properties":{
"csvPath":"hdfs://10.0.86.89:9000/xjzhu/phdthesis.csv",
"header":"false",
"delimiter":",",
"schema":"title,author,pages"
}
},
{
"uuid":"555",
"name":"Merge",
"bundle":"cn.piflow.bundle.common.Merge",
"properties":{
"inports":"data1,data2"
}
},
{
"uuid":"666",
"name":"Fork",
"bundle":"cn.piflow.bundle.common.Fork",
"properties":{
"outports":"out1,out2,out3"
}
},
{
"uuid":"777",
"name":"JsonSave",
"bundle":"cn.piflow.bundle.json.JsonSave",
"properties":{
"jsonSavePath":"hdfs://10.0.86.89:9000/xjzhu/phdthesis.json"
}
},
{
"uuid":"888",
"name":"CsvSave",
"bundle":"cn.piflow.bundle.csv.CsvSave",
"properties":{
"csvSavePath":"hdfs://10.0.86.89:9000/xjzhu/phdthesis_result.csv",
"header":"true",
"delimiter":","
}
}
],
"paths":[
{
"from":"XmlParser",
"outport":"",
"inport":"",
"to":"SelectField"
},
{
"from":"SelectField",
"outport":"",
"inport":"data1",
"to":"Merge"
},
{
"from":"CsvParser",
"outport":"",
"inport":"data2",
"to":"Merge"
},
{
"from":"Merge",
"outport":"",
"inport":"",
"to":"Fork"
},
{
"from":"Fork",
"outport":"out1",
"inport":"",
"to":"PutHiveStreaming"
},
{
"from":"Fork",
"outport":"out2",
"inport":"",
"to":"JsonSave"
},
{
"from":"Fork",
"outport":"out3",
"inport":"",
"to":"CsvSave"
}
]
}
}
2019-01-11 15:47:36 +08:00
- curl -0 -X POST http://10.0.86.191:8002/flow/start -H "Content-type: application/json" -d 'this is your flow json'
2019-03-17 14:07:47 +08:00
- piflow web: try with "http://piflow.ml/piflow-web", user/password: admin/admin
2019-02-26 16:38:32 +08:00
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-login.png)
2019-03-19 10:35:48 +08:00
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-flowlist.png)
2019-02-26 16:38:32 +08:00
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-createflow.png)
2019-03-18 17:00:26 +08:00
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-flowconfig.png)
2019-02-26 16:38:32 +08:00
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-loadflow.png)
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-monitor.png)
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-log.png)
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-processlist.png)
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-templatelist.png)
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/piflow-savetemplate.png)
2019-09-09 09:32:13 +08:00
![](https://github.com/cas-bigdatalab/piflow/blob/master/doc/PiFlowUserGroup.png)
2019-09-11 14:31:52 +08:00
Welcome to join PiFlow User Group! Contact: 吴老师 18910263390 wzs@cnic.cn
2019-09-09 09:32:13 +08:00