Hi all, I've got a bunch of tests that are checking whether my spark process is able to connect to a mesos cluster. The "happy path" (mesos up & running) is working fine the problem comes when I'm testing a connection with a wrong mesos ip then I'm getting the following error:
WARNING: Logging before InitGoogleLogging() is written to STDERR W0602 11:26:03.549504 13269 sched.cpp:1323] ************************************************** Scheduler driver bound to loopback interface! Cannot communicate with remote master(s). You might want to set 'LIBPROCESS_IP' environment variable to use a routable IP address. ************************************************** # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007fcdf32c5660, pid=13125, tid=140517706200832 # # JRE version: Java(TM) SE Runtime Environment (7.0_75-b13) (build 1.7.0_75-b13) # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.75-b04 mixed mode linux-amd64 compressed oops) # Problematic frame: # C [libc.so.6+0x83660] cfree+0x220 # # Core dump written. Default location: /home/arodriguez/dev/datavis-master/back/core or core.13125 (max size 50000 kB). To ensure a full core dump, try "ulimit -c unlimited" before starting Java again # # An error report file with more information is saved as: # /home/arodriguez/dev/datavis-master/back/hs_err_pid13125.log # # If you would like to submit a bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # /bin/sh: lĂnea 1: 13125 Abortado (`core' generado) /usr/java/jdk1.7.0_75/jre/bin/java -javaagent:/home/arodriguez/.m2/repository/org/jacoco/org.jacoco.agent/0.7.2.201409121644/org.jacoco.agent-0.$.2.201409121644-runtime.jar=destfile=/home/arodriguez/dev/datavis-master/back/target/jacocoIT.exec -Xmx1024m -XX:MaxPermSize=256m -Dlogback.configurationFile=conf/logger/develop.logger.xml -Djava.security.polic$=conf/java.policy -XX:+HeapDumpOnOutOfMemoryError org.apache.maven.surefire.booter.ForkedBooter /home/arodriguez/dev/datavis-master/back/target/surefire/surefire6809257750333050101tmp /home/arodriguez/dev/datav$s-master/back/target/surefire/surefire_02320528722071658975tmp Any ideas?
