This repository was archived by the owner on Apr 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,11 @@ You can feed Sparklint an event log file to playback activities.
71
71
##### Server mode (docker)
72
72
- Docker support available at https://hub.docker.com/r/roboxue/sparklint/
73
73
- 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:
75
79
- ` docker run -v /path/to/logs/dir:/logs -p 23763:23763 roboxue/sparklint -d /logs && open localhost:23763 `
76
80
- ` docker run -v /path/to/logs/file:/logfile -p 23763:23763 roboxue/sparklint -f /logfile && open localhost:23763 `
77
81
@@ -108,6 +112,10 @@ You can feed Sparklint an event log file to playback activities.
108
112
109
113
### Change log
110
114
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
+
111
119
##### 1.0.7
112
120
- Supports updating graphs using web socket, less likely a refresh will be needed now.
113
121
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ enablePlugins(DockerPlugin)
88
88
// Tag the docker build as latest for snapshot, concrete version number for release
89
89
// FIXME: replace roboxue with groupon after organization account has been created
90
90
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 " ) ))
92
92
dockerfile in docker := {
93
93
val artifact : File = assembly.value
94
94
val artifactTargetPath = s " /app/ ${artifact.name}"
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 1.0.8-SNAPSHOT "
1
+ version in ThisBuild := " 1.0.8"
You can’t perform that action at this time.
0 commit comments