SIGSEGV in Chronicle Queue 4.5.19

时间:2017-01-03 17:50:55

标签: chronicle chronicle-queue

什么会导致Chronicle Queue出现段错误?我假设我错过了某处的配置。我有一个像这样创建的readOnly Chronicle Queue:

ChronicleQueue readQueue =  SingleChronicleQueueBuilder.binary (readBasePath).readOnly (true).build ();

JVM隔离2016-12-31T00:00:00,这是我假设队列文件循环的时候。这就是环境:

Chronicle Queue 4.5.19 JVM OpenJDK 1.8.0_112-b16 Ubuntu 14.04.3 LTS Linux 3.13.0-74

这是stacktrace:

> V  [libjvm.so+0xa08d97]  
J 875  sun.misc.Unsafe.compareAndSwapInt(Ljava/lang/Object;JII)Z (0 bytes) @ 0x00007fde1d328c46 [0x00007fde1d328b80+0xc6]
j  net.openhft.chronicle.core.UnsafeMemory.compareAndSwapInt(JII)Z+8
j  net.openhft.chronicle.bytes.NativeBytesStore.compareAndSwapInt(JII)Z+17
j  net.openhft.chronicle.bytes.AbstractBytes.compareAndSwapInt(JII)Z+16
j  net.openhft.chronicle.wire.AbstractWire.writeEndOfWire(JLjava/util/concurrent/TimeUnit;J)V+32
j  net.openhft.chronicle.queue.impl.single.SingleChronicleQueueStore.writeEOF(Lnet/openhft/chronicle/wire/Wire;J)V+9
j  net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer.checkMoveToNextCycle(ZLnet/openhft/chronicle/bytes/Bytes;)Z+43
j  net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer.inACycle(Z)Z+176
j  net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer.next(Z)Z+12
j  net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer.readingDocument(Z)Lnet/openhft/chronicle/wire/DocumentContext;+6
j  net.openhft.chronicle.queue.ExcerptTailer.readingDocument()Lnet/openhft/chronicle/wire/DocumentContext;+2
j  net.openhft.chronicle.wire.MarshallableIn.readDocument(Lnet/openhft/chronicle/wire/ReadMarshallable;)Z+1

1 个答案:

答案 0 :(得分:0)

这看起来像是竞争条件。当内存映射真正被释放时,它无法被访问或者它将触发分段错误。我怀疑这个原因是它应该从一个周期到下一个周期免费。

我添加了问题https://github.com/OpenHFT/Chronicle-Queue/issues/319