Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 556 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.3K Development
- 17 Developer Projects
- 139 Programming Languages
- 293K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 158 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 468 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
JVM (java 1.6.0_20) crashed with SIGBUS error in the hot spot core dump log

865505
Member Posts: 3
We have a service that uploads a csv(comma separated data file) file from the remote server to local location and then process each record in that file one afer the other.
Recently we have observed a crash in JVM while uploading a list with problem frame ponted to libzip.so file.
It was clearly communicated that the crash is out side the JVM in native code.
This upload can be done using different protocols(FTP, SCP. SFTP...etc). We are using third party API pakages for this upload activity.
Please inform if anything you can add to this mail...
Thanks in advance,
-RAM-
Recently we have observed a crash in JVM while uploading a list with problem frame ponted to libzip.so file.
It was clearly communicated that the crash is out side the JVM in native code.
This upload can be done using different protocols(FTP, SCP. SFTP...etc). We are using third party API pakages for this upload activity.
Please inform if anything you can add to this mail...
Thanks in advance,
-RAM-
Tagged:
Answers
-
Here is the hot spot error log.
[[email protected] ~]$ cat /home/ebiz40/hs_err_pid30864.log
#
# An unexpected error has been detected by Java Runtime Environment:
#
# SIGBUS (0x7) at pc=0x00002aaaab03f031, pid=30864, tid=1119217984
#
# Java VM: Java HotSpot(TM) 64-Bit Server VM (11.0-b16 mixed mode linux-amd64)
# Problematic frame:
# C [libzip.so+0xb031]
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
--------------- T H R E A D ---------------
Current thread (0x00002aaac4096c00): JavaThread "TBSU-ImportProcess" [_thread_in_native, id=31253, stack(0x0000000042a5e000,0x0000000042b5f000)]
siginfo:si_signo=SIGBUS: si_errno=0, si_code=2 (BUS_ADRERR), si_addr=0x00002aaac2224af1
Registers:
RAX=0x0000000000000000, RBX=0x000000005470d9e8, RCX=0x0000000000000070, RDX=0x00002aaac8b62b30
RSP=0x0000000042b5be80, RBP=0x00002aaac2224ad4, RSI=0x00000035291529e0, RDI=0x00002aaac80001e8
R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x00002aae378c5418, R11=0x00002aae378c8e88
R12=0x00002aaac8b62af0, R13=0x000000005470b460, R14=0x0000000042b5bf10, R15=0x0000000000000029
RIP=0x00002aaaab03f031, EFL=0x0000000000010206, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
TRAPNO=0x000000000000000e -
Does your code or the third party code use native code (JNI)?
-
I am also facing the exact issue. Did you find any solution for this?
-
I had a similar problem with Java 6 update 18 when reading a truncated ZIP/JAR file.
Since using Java 6 update 23 and 25 I haven't had this problem. -
We have 1.5.0_22-b03 on testing environment and it is working fine. But same 1.5.0_22-b03 in production environment is having the issue.
This discussion has been closed.