Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix][py] Correct configuration of pattern discovery period #17912

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pulsar-client-cpp/python/pulsar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,7 @@ def my_listener(consumer, message):
conf = _pulsar.ConsumerConfiguration()
conf.consumer_type(consumer_type)
conf.read_compacted(is_read_compacted)
conf.pattern_auto_discovery_period(pattern_auto_discovery_period)
if message_listener:
conf.message_listener(_listener_wrapper(message_listener, schema))
conf.receiver_queue_size(receiver_queue_size)
Expand Down
38 changes: 31 additions & 7 deletions pulsar-client-cpp/python/pulsar_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
# under the License.
#


import re
import logging
import random
from unittest import TestCase, main
import time
import os
Expand Down Expand Up @@ -53,6 +55,8 @@

TM = 10000 # Do not wait forever in tests

logging.basicConfig(level=os.getenv("LOG_LEVEL", logging.INFO))


def doHttpPost(url, data):
req = Request(url, data.encode())
Expand Down Expand Up @@ -254,6 +258,32 @@ def test_deliver_after(self):
producer.close()
client.close()

def test_pattern_auto_discovery_period(self):
# use random topic to make it likely we're not using existing topics
topic_prefix = f"persistent://public/default/testing{random.randint(0, 99999)}"
client = Client(self.serviceUrl, logger=logging.getLogger("pulsar"))
consumer = client.subscribe(
re.compile(f"{topic_prefix}-.*"),
f"sub_auto_discovery",
consumer_type=ConsumerType.Shared,
pattern_auto_discovery_period=1,
)

# create the producer *after* the consumer to ensure use of topic discovery
producer = client.create_producer(f"{topic_prefix}-pattern1")
# wait *before* message sent, otherwise it's not picked up by consumer
time.sleep(1.5)
producer.send(b"hello")

# Message should be available now
msg = consumer.receive(100)

self.assertIsNotNone(msg)
self.assertEqual(msg.data(), b"hello")
consumer.unsubscribe()
producer.close()
client.close()

def test_consumer_initial_position(self):
client = Client(self.serviceUrl)
producer = client.create_producer("consumer-initial-position")
Expand Down Expand Up @@ -997,8 +1027,6 @@ def test_topics_consumer(self):
client.close()

def test_topics_pattern_consumer(self):
import re

client = Client(self.serviceUrl)

topics_pattern = "persistent://public/default/my-python-pattern-consumer.*"
Expand All @@ -1024,12 +1052,8 @@ def test_topics_pattern_consumer(self):
"my-pattern-consumer-sub",
consumer_type=ConsumerType.Shared,
receiver_queue_size=10,
pattern_auto_discovery_period=1,
)

# wait enough time to trigger auto discovery
time.sleep(2)

for i in range(100):
producer1.send(b"hello-1-%d" % i)

Expand Down