消息在 ActiveMQ Artemis 中过期

Message getting expired in ActiveMQ Artemis

我使用 Eclipse microprofile 发射器在 Quarkus 应用程序中创建了一个 ActiveMQ Artemis 生产者。但是消息立即过期,并被移入 ExpiryQueue。我不确定这种行为。请建议我如何将消息保存到队列中,以便它仅在指定时间后过期。

我正在使用下面的代码。

        @Inject
        @Channel("my-queue")
        Emitter<String> emitter;

在元数据下方创建:

        String message = "my-message";
        OutgoingAmqpMetadata metadata = OutgoingAmqpMetadata.builder()
                    .withExpiryTime(10000L)
                    .withDurable(true)
                    .withMessageId(String.valueOf(message.hashCode()))
                    .build();
       
        emitter.send(Message.of(message, Metadata.of(metadata)));

我正在使用 smallrye-amqp 连接器。在 application.properties 中的 属性 下方添加:

mp.messaging.outgoing.my-queue.connector=smallrye-amqp

我认为您在 withExpiryTime 中设置了错误的值。您将其设置为 TTL,但我相信这是一个绝对时间,因此您应该这样设置:

OutgoingAmqpMetadata metadata = OutgoingAmqpMetadata.builder()
            .withExpiryTime(System.currentTimeMillis() + 10000L)
            .withDurable(true)
            .withMessageId(String.valueOf(message.hashCode()))
            .build();