Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
allwefantasy committed Nov 6, 2018
1 parent e216e5d commit 4e0f454
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/make-distribution.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mvn -DskipTests clean package -pl streamingpro-mlsql -am \
-Ponline \
-Pscala-2.11 \
-Pdsl \
-Pshade \
-Passembly \
-Pcrawler \
-Phive-thrift-server \
-Pautoml \
Expand Down
30 changes: 29 additions & 1 deletion docs/docv2/Compile.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## Compile

Compile Example(Spark 2.3.x):

Expand Down Expand Up @@ -58,4 +59,31 @@ When you use spark-2.2.x:
|opencv-support | false | | | |
spark-1.6.x/scala-2.10 will not be maintained, we will remove it soon.
spark-1.6.x/scala-2.10 will not be maintained, we will remove it soon.
## Docker runtime support
1. build mlsql base docker image.
```
docker build -t mlsql-base:v1 dev/docker
```
2. build runnable mlsql binary package.
```
dev/make-distribution.sh
```
3. decompression binary package.
```
tar zxf streamingpro-bin-1.1.3.tgz
```
4. start mlsql server.
```
docker run -it -v ${PWD}:/app -p 9003:9003 mlsql-base:v1 /app/streamingpro/start-local.sh
```

0 comments on commit 4e0f454

Please sign in to comment.