horizonzy opened a new issue #2650: URL: https://github.com/apache/rocketmq/issues/2650
**BUG REPORT** The project's ci often failed, the failure is caused by ci. The error show that ``` # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x0000ffff9411e8b0, pid=7795, tid=0x0000ffffa2cdf1f0 # # JRE version: OpenJDK Runtime Environment (8.0_275-b01) (build 1.8.0_275-8u275-b01-0ubuntu1~18.04-b01) # Java VM: OpenJDK 64-Bit Server VM (25.275-b01 mixed mode linux-aarch64 compressed oops) # Problematic frame: # J 1761 C2 org.apache.rocketmq.store.CommitLog.getMaxOffset()J (17 bytes) @ 0x0000ffff9411e8b0 [0x0000ffff9411e7c0+0xf0] # # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again # # An error report file with more information is saved as: # /home/travis/build/apache/rocketmq/store/hs_err_pid7795.log # # If you would like to submit a bug report, please visit: # http://bugreport.java.com/bugreport/crash.jsp # Aborted ``` Modify the travis.yml to have a try to fix it, but I'm not sure can fix it. before: ``` before_script: - java -version - mvn -version ``` change to: ``` before_script: - java -version - mvn -version - ulimit -c unlimited ``` Can community optimize it? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
