Describe the bug
Pulsar Java client crashes with the message below when trying to create a Pulsar client. I reproduced the crash with versions 2.9.1, 2.8.2 and 2.7.4, but same code works on 2.7.1. Also the crash doesn't happen when running on a local machine, but happens when running in a docker container (openjdk:14-alpine).
Logs:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x0000000000003fd6, pid=1, tid=7
#
# JRE version: OpenJDK Runtime Environment (14.0+33) (build 14-ea+33)
# Java VM: OpenJDK 64-Bit Server VM (14-ea+33, mixed mode, sharing, tiered, compressed oops, g1 gc, linux-amd64)
# Problematic frame:
# C 0x0000000000003fd6
#
# Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport %p %s %c %d %P %E" (or dumping to /src/services/rule_engine/core.1)
#
# An error report file with more information is saved as:
# /src/services/rule_engine/hs_err_pid1.log
#
# If you would like to submit a bug report, please visit:
# https://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
Full log:
hs_err_pid1.log
Code:
client = PulsarClient.builder()
.serviceUrl(BaseSettings.PULSAR_URL) // "pulsar://localhost:6650"
.loadConf(clientSettings) // empty HashMap
.build();
To Reproduce
Not sure. The description should hopefully provide enough info.
Expected behavior
Doesn't crash.
Desktop (please complete the following information):
Full info available in the full log file (under S Y S T E M near the end).
Describe the bug
Pulsar Java client crashes with the message below when trying to create a Pulsar client. I reproduced the crash with versions 2.9.1, 2.8.2 and 2.7.4, but same code works on 2.7.1. Also the crash doesn't happen when running on a local machine, but happens when running in a docker container (
openjdk:14-alpine).Logs:
Full log:
hs_err_pid1.log
Code:
To Reproduce
Not sure. The description should hopefully provide enough info.
Expected behavior
Doesn't crash.
Desktop (please complete the following information):
Full info available in the full log file (under
S Y S T E Mnear the end).