Results 16 comments of ixaxaar

Nah, its frustrating to the point that it becomes funny (after some headbanging of course). Maybe devrant is the better place for that :/

+1 DId this on a fresh EMR cluster: ```bash wget https://raw.githubusercontent.com/alexarchambault/jupyter-scala/master/jupyter-scala chmod +x ./jupyter-scala ./jupyter-scala ``` And in notebook: ```scala import $exclude.`org.slf4j:slf4j-log4j12`, $ivy.`org.slf4j:slf4j-nop:1.7.21` // for cleaner logs import $profile.`hadoop-2.6` import...

+1 encountered the same problem, boto seems to do this: here https://github.com/briandilley/ebs-deploy/blob/master/ebs_deploy/__init__.py#L313 ``` VersionLabel (string) -- The name of the application version to deploy. If the specified application has no...

+1 same issue, kamon-newrelic requires aspectj, and specifying `-javaagent:/root/.ivy2/cache/org.aspectj/aspectjweaver/jars/aspectjweaver-1.8.2.jar` to a one-jar its taking 10mins to load.

Yep, will do next weekend! :D

I kinda got this to work using middlewares like so (code snippet might not be complete): ``` import ( "fmt" "net/http" "github.com/prometheus/client_golang/prometheus/promhttp" ) const ( METRICS_URL string = "/metrics" )...