Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 92b0d77

Browse files
author
Robert Xue
committed
Setting version to 1.0.8
1 parent 34bbb23 commit 92b0d77

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ You can feed Sparklint an event log file to playback activities.
7171
##### Server mode (docker)
7272
- Docker support available at https://hub.docker.com/r/roboxue/sparklint/
7373
- pull docker image from docker hub or build locally with `sbt docker`
74-
- Execute the docker image:
74+
- `sbt docker` command will build a roboxue/sparklint:latest image on your local machine
75+
- This docker image basically wrappend `sbt run` for you.
76+
- Attach a dir that contains logs to the image as a volumn, so that you can use -f or -d configs
77+
- Or just start the docker image and connect to a history server using UI
78+
- Basic commands to execute the docker image:
7579
- `docker run -v /path/to/logs/dir:/logs -p 23763:23763 roboxue/sparklint -d /logs && open localhost:23763`
7680
- `docker run -v /path/to/logs/file:/logfile -p 23763:23763 roboxue/sparklint -f /logfile && open localhost:23763`
7781

@@ -108,6 +112,10 @@ You can feed Sparklint an event log file to playback activities.
108112

109113
### Change log
110114

115+
##### 1.0.8
116+
- Fixes compatibility issue with spark 2.0+ history server api (@alexnikitchuk, @neggert)
117+
- Fixes docker image's dependencies issue (@jcdauchy)
118+
111119
##### 1.0.7
112120
- Supports updating graphs using web socket, less likely a refresh will be needed now.
113121

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ enablePlugins(DockerPlugin)
8888
// Tag the docker build as latest for snapshot, concrete version number for release
8989
// FIXME: replace roboxue with groupon after organization account has been created
9090
imageNames in docker := Seq(new ImageName(namespace = Some("roboxue"), repository = "sparklint",
91-
tag = if (!isSnapshot.value) Some(version.value) else None))
91+
tag = if (!isSnapshot.value) Some(version.value) else Some("latest")))
9292
dockerfile in docker := {
9393
val artifact: File = assembly.value
9494
val artifactTargetPath = s"/app/${artifact.name}"

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "1.0.8-SNAPSHOT"
1+
version in ThisBuild := "1.0.8"

0 commit comments

Comments
 (0)