Re: [DISCUSS] PIP-175: Extend time based release process

2023-02-08 Thread Nicolò Boschi
Matteo, Can you start the vote for this PIP? We should start working on 3.0.0 soon and this PIP is required to reach community consensus. https://lists.apache.org/thread/d6rk2ntzwk8twznf82k7o6xgyb2k9s14 Thanks, Nicolò Boschi Il giorno mer 9 nov 2022 alle ore 09:37 Haiting Jiang < jianghait...@

[VOTE] Pulsar Client C++ Release 3.1.2 Candidate 1

2023-02-08 Thread Yunze Xu
This is the first release candidate for Apache Pulsar Client C++, version 3.1.2. It fixes the following issues: https://github.com/apache/pulsar-client-cpp/issues?q=label%3Arelease%2F3.1.2 *** Please download, test and vote on this release. This vote will stay open for at least 72 hours *** Note

Re: [DISCUSS] PIP-186: Introduce two phase deletion protocol based on system topic

2023-02-08 Thread Yan Zhao
On 2023/02/07 18:41:20 Heesung Sohn wrote: > On Sun, Feb 5, 2023 at 2:26 AM Yan Zhao wrote: > > > On 2023/02/03 18:14:53 Heesung Sohn wrote: > > > There are some cases to trigger it. > > > 1. A cursor be removed. > > > 2. Close the current ledger and create a new ledger. > > > 3. Consumer ack

Re: [VOTE] PIP-237: Make PulsarAdmin accessible in SinkContext and SourceContext

2023-02-08 Thread r...@apache.org
+1(non-binding) -- Thanks Xiaolong Ran Michael Marshall 于2023年2月8日周三 12:22写道: > +1 (binding) > > Thanks, > Michael > > On Tue, Feb 7, 2023 at 7:00 AM Rui Fu wrote: > > > > +1 > > > > Best, > > > > Rui Fu > > On Jan 30, 2023 at 19:12 +0800, Alexander Preuss > , wrote: > > > Now that the DISCUSS

Re: [DISCUSS] PIP-245: Subscriptions expiration for NonPersistentTopic only

2023-02-08 Thread Baodi Shi
> > But it seems that currently all Durable subscriptions on > non-persistent topics are NonDurable, and I wonder if that confuses > users. > We can add validation to inform the user that a durable subscription on a non-persistent topic is invalid. Thanks, Baodi Shi 在 2023年2月8日 10:48:32 上,Zike

Re: [VOTE] PIP-237: Make PulsarAdmin accessible in SinkContext and SourceContext

2023-02-08 Thread Baodi Shi
+1 (non-binding) Thanks, Baodi Shi 在 2023年2月8日 19:12:41 上,r...@apache.org 写道: > +1(non-binding) > > -- > Thanks > Xiaolong Ran > > Michael Marshall 于2023年2月8日周三 12:22写道: > > +1 (binding) > > > Thanks, > > Michael > > > On Tue, Feb 7, 2023 at 7:00 AM Rui Fu wrote: > > > > > > +1 > > > > > >

Re: [VOTE] Pulsar Client C++ Release 3.1.2 Candidate 1

2023-02-08 Thread Matteo Merli
+1 -- Matteo Merli On Wed, Feb 8, 2023 at 12:28 AM Yunze Xu wrote: > > This is the first release candidate for Apache Pulsar Client C++, version > 3.1.2. > > It fixes the following issues: > https://github.com/apache/pulsar-client-cpp/issues?q=label%3Arelease%2F3.1.2 > > *** Please download, t

[VOTE] PIP-175: Extend time based release process

2023-02-08 Thread Matteo Merli
https://github.com/apache/pulsar/issues/15966 ## Motivation In PIP-47 ( https://github.com/apache/pulsar/wiki/PIP-47:-Time-Based-Release-Plan), we have adopted a time-based release plan. This was the first

Re: [VOTE] PIP-237: Make PulsarAdmin accessible in SinkContext and SourceContext

2023-02-08 Thread Zike Yang
+1 (non-binding) Thanks, Zike Yang On Wed, Feb 8, 2023 at 11:08 PM Baodi Shi wrote: > > +1 (non-binding) > > > Thanks, > Baodi Shi > > > 在 2023年2月8日 19:12:41 上,r...@apache.org 写道: > > > +1(non-binding) > > > > -- > > Thanks > > Xiaolong Ran > > > > Michael Marshall 于2023年2月8日周三 12:22写道: > > >

[DISCUSS] Base64-encoded key/cert in the ClusterData

2023-02-08 Thread Zixuan Liu
Hi all, In the ClusterData, we have two types of the key/certificate, one is PEM, and one is JKS. I would like to discuss the bae64-encoded key/certificate in PEM format. The Pulsar can only load the key/certificate by the file path. When configuring the key/certificate, we must copy the key/cer

Re: [DISCUSS] PIP-245: Subscriptions expiration for NonPersistentTopic only

2023-02-08 Thread Jiuming Tao
> We can add validation to inform the user that a durable subscription on a > non-persistent topic is invalid. It makes sense, for non-persistent topic, it should not create a durable subscription. Thanks, Tao Jiuming > 2023年2月8日 23:06,Baodi Shi 写道: > >> >> But it seems that currently all Du

Re: [DISCUSS] PIP-245: Subscriptions expiration for NonPersistentTopic only

2023-02-08 Thread Zike Yang
> It makes sense, for non-persistent topic, it should not create a durable > subscription. Agree. But we need to take care of the compatibility. How do we handle this compatibility? BR, Zike Yang On Thu, Feb 9, 2023 at 2:43 PM Jiuming Tao wrote: > > > We can add validation to inform the user t

Re: [DISCUSS] PIP-245: Subscriptions expiration for NonPersistentTopic only

2023-02-08 Thread Jiuming Tao
> Agree. But we need to take care of the compatibility. How do we handle > this compatibility? How about set `isDurable = false` when create `NonPersistentSubscription`? In `NonPersistentSubscription`, we can change the constructor from ``` public NonPersistentSubscription(NonPersistentTopic

Re: [DISCUSS] PIP-245: Subscriptions expiration for NonPersistentTopic only

2023-02-08 Thread Baodi Shi
Agree, and we can add verification on the client side. When the topic is non-persistent and uses durable to subscribe, print warns logs: “non-persistent not support durable subscribe will use non-durable to subscribe.” Thanks, Baodi Shi 在 2023年2月9日 15:10:12 上,Jiuming Tao 写道: > Agree. But we n