Gerard Maas

Results 9 comments of Gerard Maas

@FabianMeiswinkel I've refreshed the PR and ran all the tests. The CI seems to have a problem. ``` The command "~/bin/install-jdk.sh --target "/home/travis/oraclejdk8" --workspace "/home/travis/.cache/install-jdk" --feature "8" --license "BCL"" failed...

@FabianMeiswinkel Thanks for the info. Would you like me to close this PR or leave it as-is? I created it b/c some people needed a Scala 2.12 version and I...

this is a collision with the relative import option in Scala. You can normally do: ``` import foo.bar import bar.Beer // resolves to foo.bar.Beer ``` And it's dependent of the...

defining methods `def foo()` at top-level in the notebook usually causes serialization issues because the underlying SparkREPL creates an enclosing class that pulls other elements from the notebook. In this...

@rezacute @vidma I'm observing the same error. I think it comes from this dynamic class loading: https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/common/config/AbstractConfig.java#L246 Not sure why the kernel cannot find that class. This works on the...

This notebook reproduces the issue. Easiest way to reproduce is running `spotify/kafka`: ``` docker run -p 2181:2181 -p 9092:9092 --env ADVERTISED_HOST=127.0.0.1 --env ADVERTISED_PORT=9092 spotify/kafka ``` [kafka010-streaming-data.snb.zip](https://github.com/spark-notebook/spark-notebook/files/1135681/kafka010-streaming-data.snb.zip) Going back to the...

Can't reproduce: (SNB w/Spark 2.0, Scala 2.10.6) ``` val ser = 61 val notSer = new Socket sc.parallelize(Seq(1, 3)).reduce { case (a: Int, b: Int) => println(ser); a + b...

Placing the plugin info in `project/plugins.sbt` worked for me. Not sure what the official sbt way should be.

I'm observing the same error when passing a `map`. Is there any workaround available?