2020-08-28 13:15:46 UTC - Frank Kelly: @Addison Higham Good morning! No hurry or pressure but let me know if you would like me to file the retries "issue" as a bug or enhancement. Thanks in advance ---- 2020-08-28 13:19:40 UTC - Frank Kelly: Does anyone know if the Python client supports Proxy over SNI yet <https://pulsar.apache.org/docs/en/concepts-proxy-sni-routing/#configure-pulsar-client-with-sni-routing> I have the 2.6.0 Pulsar Python client but don't see any proxy options ``` def __init__(self, service_url, authentication=None, operation_timeout_seconds=30, io_threads=1, message_listener_threads=1, concurrent_lookup_requests=50000, log_conf_file_path=None, use_tls=False, tls_trust_certs_file_path=None, tls_allow_insecure_connection=False, tls_validate_hostname=False, ):``` Thanks in advance ---- 2020-08-28 14:21:50 UTC - Nazia Firdous: 1.When i am trying to Get the list of clusters i am getting Concurrent Timeout Exception. public class ClusterImpl { public List<String> getClusterList() { List<String> getClusterList = null; PulsarAdmin pulsarAdmin; try { pulsarAdmin = PulsarAdminImpl .getInstance(); getClusterList = pulsarAdmin .clusters() .getClusters(); if (getClusterList.isEmpty()) { return null; } System.out.println(getClusterList); } catch (PulsarAdminException e) { System.out.println(e.getMessage()); } return getClusterList; } } ---- 2020-08-28 14:22:22 UTC - Nazia Firdous: ---- 2020-08-28 14:42:17 UTC - Jorge Miralles: Thanks!! I’ll try this ---- 2020-08-28 15:08:34 UTC - Ryan Nowacoski: this is the default behavior for Pulsar. When you create a consumer there are 2 options for `subscriptionInitialPosition` Earliest and Latest. the default is Latest ---- 2020-08-28 15:09:51 UTC - Ming: @Maksym Domarev I think these broker configuration might be what you are looking for ```# Enable the deletion of inactive topics brokerDeleteInactiveTopicsEnabled=true
# How often to check for inactive topics brokerDeleteInactiveTopicsFrequencySeconds=60 # Set the inactive topic delete mode. Default is delete_when_no_subscriptions # 'delete_when_no_subscriptions' mode only delete the topic which has no subscriptions and no active producers # 'delete_when_subscriptions_caught_up' mode only delete the topic that all subscriptions has no backlogs(caught up) # and no active producers/consumers brokerDeleteInactiveTopicsMode=delete_when_no_subscriptions # Max duration of topic inactivity in seconds, default is not present # If not present, 'brokerDeleteInactiveTopicsFrequencySeconds' will be used # Topics that are inactive for longer than this value will be deleted brokerDeleteInactiveTopicsMaxInactiveDurationSeconds=``` ---- 2020-08-28 15:42:51 UTC - Addison Higham: @Frank Kelly yeah I would go ahead with filing that as an issue, I *think* there might be a related issue already but if you don't find it easily, just make a new one. And as much context as you can add I am sure will be helpful ---- 2020-08-28 15:43:46 UTC - Frank Kelly: Will do - thanks for your help ---- 2020-08-28 15:57:16 UTC - Frank Kelly: Please see <https://github.com/apache/pulsar/issues/7927> ---- 2020-08-28 17:06:38 UTC - Maksym Domarev: awesome !!! yes, that’s what I was looking for thanks! ---- 2020-08-28 18:38:45 UTC - Jerry Peng: <https://github.com/apache/pulsar/pull/7929/files> ----
