apache / apache/pulsar-client-python

many "Connection closed" messages after receiving the warning "Received send error from the server: Cannot determine whether the message is a duplicate at this time" from producer

オープン
#59 コメント 5 件 リアクション 0 件 担当者 1 名 @BewareMyPower が担当を希望しています GitHub で見る
主要言語
Python
スター
75
フォーク
53
PR マージ指標
30日以内にマージされた PR はありません

説明

In my program, there will be eight producers, two of which will be sent to partitioned topics and six of which will be sent to unpartitioned topics.

Below is my topic configuration:
```
producer = client.create_producer(
producer_name='raw-test',
batching_enabled=True,
block_if_queue_full=True,
batching_type=BatchingType.KeyBased,
batching_max_messages=2000,
batching_max_allowed_size_in_bytes=1000 * 1024,
batching_max_publish_delay_ms=20,
compression_type=pulsar.CompressionType.ZSTD,
send_timeout_millis=0,
topic='persistent://ethereum-test/raw/tests'
)
```
I am using `sendAsync()` to send messages, but I am getting many "Connection closed" messages after receiving the warning "Received send error from the server: Cannot determine whether the message is a duplicate at this time".

I also found that I can remove `BatchingType.KeyBased` or turn off batching-mode without encountering this problem, and that the problem does not consistently occur.

Here are my debug logs:
[pulsar_log.txt](https://github.com/apache/pulsar-client-python/files/10199684/pulsar_log.txt)

**pulsar-client version is 2.10.1**
**pulsar cluster version is 2.10.2**

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。