Re: Cutting pulsar-client-node v1.5.0 release

2021-12-09 Thread Enrico Olivelli
+1

Enrico

Il giorno gio 9 dic 2021 alle ore 05:54 Sijie Guo  ha
scritto:

> +1
>
> On Wed, Dec 8, 2021 at 8:37 PM Masahiro Sakamoto 
> wrote:
>
> > Hi Team,
> >
> > I'm planning to release v1.5.0 of the Pulsar Node.js client next week as
> > some bug fixes have been merged to master.
> > If you have any comments on this, please reply to this email.
> >
> > Regards,
> >
> > Masahiro Sakamoto
> > Yahoo Japan Corp.
> > E-mail: massa...@yahoo-corp.jp
> >
>


[GitHub] [pulsar-manager] shiv4289 commented on a change in pull request #434: SAML Integration for Login

2021-12-09 Thread GitBox


shiv4289 commented on a change in pull request #434:
URL: https://github.com/apache/pulsar-manager/pull/434#discussion_r765586155



##
File path: src/main/java/org/apache/pulsar/manager/controller/SSOController.java
##
@@ -0,0 +1,131 @@
+/**
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.pulsar.manager.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiResponse;
+import io.swagger.annotations.ApiResponses;
+import java.net.URI;
+import java.util.Map;
+import java.util.Optional;
+import javax.annotation.Resource;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.codec.digest.DigestUtils;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.http.client.utils.URIBuilder;
+import org.apache.http.util.Asserts;
+import org.apache.pulsar.manager.entity.RoleBindingEntity;
+import org.apache.pulsar.manager.entity.RoleBindingRepository;
+import org.apache.pulsar.manager.entity.RolesRepository;
+import org.apache.pulsar.manager.entity.UserInfoEntity;
+import org.apache.pulsar.manager.entity.UsersRepository;
+import org.apache.pulsar.manager.service.JwtService;
+import org.apache.pulsar.manager.utils.SAMLParser;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.ResponseBody;
+import org.springframework.web.bind.annotation.RestController;
+
+@Slf4j
+@RestController
+@RequestMapping(value = "/pulsar-manager/saml")
+@Api(description = "Calling the request below this class does not require 
authentication because " +
+"the user has not logged in yet.")
+@Validated
+public class SSOController {
+
+
+@Autowired
+private UsersRepository usersRepository;
+
+@Autowired
+private JwtService jwtService;
+
+@Resource
+private RolesRepository rolesRepository;
+
+@Resource
+private RoleBindingRepository roleBindingRepository;
+
+@Value("${sso.redirect.host}")
+private String redirectHost;
+
+@Value("${sso.redirect.port}")
+private int redirectPort;
+
+@Value("${sso.redirect.scheme}")
+private String redirectUrlScheme;
+
+@Value("${sso.certificate}")
+private String certificate;
+
+@Value("${sso.whitelisted.domain}")
+private String whiteListedDomain;
+
+@ApiOperation(value = "Verify SAML Response")
+@ApiResponses({
+@ApiResponse(code = 200, message = "ok"),
+@ApiResponse(code = 404, message = "Not found"),
+@ApiResponse(code = 500, message = "Internal server error")
+})
+@RequestMapping(value = "/sso", method = RequestMethod.POST)
+@ResponseBody
+public void loginByIDP(HttpServletRequest request, HttpServletResponse 
response) throws Exception {
+String samlResponse = request.getParameter("SAMLResponse");
+SAMLParser samlParser = new SAMLParser(certificate);
+Map userDetails = 
samlParser.getUserDetailsFromSAMLResponse(samlResponse);
+
Asserts.check(StringUtils.contains(userDetails.get("email"),whiteListedDomain),"Login
 with domain not supported");

Review comment:
   Suggest to check the email format in string(using 
[InternetAddress](https://stackoverflow.com/questions/624581/what-is-the-best-java-email-address-validation-method)()?)
 in addition to the domain. 

##
File path: src/main/java/org/apache/pulsar/manager/controller/SSOController.java
##
@@ -0,0 +1,131 @@
+/**
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.pulsar.manager.controller;
+
+import io.sw

[GitHub] [pulsar-helm-chart] SapnaGirdhani1 opened a new issue #184: Helm Chart installs Pulsar Manager V1.0

2021-12-09 Thread GitBox


SapnaGirdhani1 opened a new issue #184:
URL: https://github.com/apache/pulsar-helm-chart/issues/184


   I used Helm Chart to install Pulsar on my Kubernetes Cluster. It installs 
Pulsar Manager V1 ( apachepulsar/pulsar-manager:v0.1.0) by default. I want to 
have Pulsar manager V2. Not finding any way to configure Pulsar Manager V2.
   
   **To Reproduce**
   1. follow the link : https://pulsar.apache.org/docs/en/kubernetes-helm/  to 
configure Pulsar on Kubernetes Cluster. 
   2. Check the available services.
   3. It installs Pulsar Manager
   4. Version is - apachepulsar/pulsar-manager:v0.1.0
   
   **Expected behavior**
   I need Pulsar manager V0.2.0 to work on HerdDB.There is no way I can specify 
the version.
   
   **Desktop (please complete the following information):**
- OS: IBM Cloud Kubernetes Cluster
   
   **Additional context**
   I need Pulsar Manager V0.2.0 version to work on HerdDB. Not able to capture 
jdbc url fromV0.1.0 version. 
   So I am looking for a solution where I can:
   1) Either install Pulsar and Pulsar manager separately
   2) Or I can specify Pulsar Manager Version to be installed via Helm Chart
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




Re: [Great News] Pulsar Hits 10,000 GitHub Stars Milestone!

2021-12-09 Thread Dianjin Wang
I want to sync the blog status, the update has been done.

Best,
Dianjin Wang


On Thu, Dec 9, 2021 at 2:34 PM Sijie Guo  wrote:

> Hi Dave,
>
> Will follow up tomorrow morning (Pacific Time).
>
> - Sijie
>
> On Wed, Dec 8, 2021 at 9:35 PM Dave Fisher  wrote:
>
> > Hi Sijie,
> >
> > Thanks for handling this issue. I’ll check in my morning. There was a
> > reference on the Community Newsletter as well. Please check that too.
> >
> > Best Regards,
> > Dave
> >
> > Sent from my iPhone
> >
> > > On Dec 8, 2021, at 9:24 PM, Sijie Guo  wrote:
> > >
> > > Dave,
> > >
> > > I think that is a mistake. We already caught it. Dianjin is fixing it.
> > >
> > > - Sijie
> > >
> > >> On Wed, Dec 8, 2021 at 11:41 AM Dave Fisher  wrote:
> > >>
> > >> This is great news!
> > >>
> > >> However the ending of the blog post [1] does not follow the Apache Way
> > >>
> > >> This bullet point is misleading and serves to split the community.
> > >>
> > >>> • Join the 2022 Pulsar Ambassador Program and work directly with
> Pulsar
> > >> PMCs and top contributors to co-host events, promote new project
> > updates,
> > >> and build the Pulsar community in your city. Contact Us:
> > >> ambassa...@streamnative.io
> > >>
> > >> (1) This mailing list (dev@pulsar.apache.org) is the one and only
> place
> > >> to work directly with the whole of the Apache Pulsar community.
> > >> (2) If you engage in this unofficial, vendor-specific “Ambassador”
> > program
> > >> you are not growing the whole and miss connecting with most of the
> true
> > >> Apache Pulsar community.
> > >>
> > >> Please rewrite or remove this divisive bullet point.
> > >>
> > >> Here is a blog post about how Apache is supposed to work. [2] And more
> > >> about the Apache Way [3]
> > >>
> > >> FYI - PMCs is plural for PMC. Apache Pulsar is one of 200+ Apache
> PMCs.
> > >> PMC’s have members who are individuals. Here are definitions of roles
> > [4].
> > >> The community consists of people who are in all of these roles. A
> > project
> > >> is supposed to be managed as described here. [5]
> > >>
> > >> All The Best,
> > >> Dave
> > >>
> > >> [1]
> > >>
> >
> https://streamnative.io/blog/community/2021-12-07-pulsar-hits-1-github-stars-milestone/
> > >> [2]
> > >>
> https://blogs.apache.org/foundation/entry/the-apache-way-to-sustainable
> > >> [3] https://www.apache.org/theapacheway/index.html
> > >> [4] https://www.apache.org/foundation/how-it-works.html#roles
> > >> [5] https://www.apache.org/foundation/how-it-works.html#management
> > >>
> >  On Dec 7, 2021, at 9:36 PM, Yu  wrote:
> > >>>
> > >>> Hi Pulsar enthusiasts,
> > >>>
> > >>> Our community has been growing ever-faster since it became a
> top-level
> > >> project of the ASF in 2018.
> > >>>
> > >>> Recently, Pulsar hits 10, 000 Github stars milestone! We would like
> to
> > >> thank every stargazer for joining us on the journey. More importantly,
> > >> thank you to every Pulsar user, contributor, and committer for making
> > this
> > >> happen!
> > >>>
> > >>> Here is a glance at the vibrancy of the Pulsar community:
> > >>>
> > >>>
> > >>> For more details about Pulsar's community growth, recent updates, and
> > >> future plans, see here.
> > >>>
> > >>> Cheers,
> > >>> Anonymitaet
> > >>
> > >>
> >
> >
>


[Vote] PIP 106: Pulsar Broker extensions for operators of enterprise-wide clusters

2021-12-09 Thread Narayanan, Madhavan
Hi Pulsar Community,



I would like to start a VOTE on the Pulsar Broker extensions for operators (PIP 
106).



The issue for PIP 106 is here: https://github.com/apache/pulsar/issues/12858

And the prototype implementation is here:

https://github.com/apache/pulsar/pull/12536



Kindly VOTE as early as possible.



Best Regards,

Madhavan Narayanan



[DISCUSS] Release Pulsar 2.7.4

2021-12-09 Thread Michael Marshall
Hello Pulsar Community,

I'd like to propose that we release 2.7.4. We have merged several
important fixes since we released 2.7.3 in August.

I am happy to volunteer to be the release manager.

Here [0] you can find the list of 36 commits cherry-picked to
branch-2.7 since 2.7.3 release. It looks like there are more PRs
labeled with `release/2.7.4` than commits cherry-picked, so I will
need to work on cherry-picking those before we can create the tag for
the release [1].

Also, I see 3 open PRs labeled with `release/2.7.4`. I'll follow up on
each of those PRs to see if they will be completed soon.

Thanks,
Michael

[0] - https://github.com/apache/pulsar/compare/v2.7.3...branch-2.7
[1] - 
https://github.com/apache/pulsar/pulls?q=is%3Aopen+is%3Apr+label%3Arelease%2F2.7.4


Re: [DISCUSS] Release Pulsar 2.7.4

2021-12-09 Thread Matteo Merli
+1
--
Matteo Merli


On Thu, Dec 9, 2021 at 7:30 AM Michael Marshall  wrote:
>
> Hello Pulsar Community,
>
> I'd like to propose that we release 2.7.4. We have merged several
> important fixes since we released 2.7.3 in August.
>
> I am happy to volunteer to be the release manager.
>
> Here [0] you can find the list of 36 commits cherry-picked to
> branch-2.7 since 2.7.3 release. It looks like there are more PRs
> labeled with `release/2.7.4` than commits cherry-picked, so I will
> need to work on cherry-picking those before we can create the tag for
> the release [1].
>
> Also, I see 3 open PRs labeled with `release/2.7.4`. I'll follow up on
> each of those PRs to see if they will be completed soon.
>
> Thanks,
> Michael
>
> [0] - https://github.com/apache/pulsar/compare/v2.7.3...branch-2.7
> [1] - 
> https://github.com/apache/pulsar/pulls?q=is%3Aopen+is%3Apr+label%3Arelease%2F2.7.4


[GitHub] [pulsar-helm-chart] frankjkelly opened a new issue #185: Github Actions should enforce an increase in helm chart semantic version on each PR

2021-12-09 Thread GitBox


frankjkelly opened a new issue #185:
URL: https://github.com/apache/pulsar-helm-chart/issues/185


   **Is your feature request related to a problem? Please describe.**
   The problem is each helm chart version is deployed once. See 
https://github.com/apache/pulsar-helm-chart/releases
   
   So if someone makes an edit or improvement to the chart and we do not change 
the version then that change will not be seen until the next change where 
someone bumps the version.
   
   **Describe the solution you'd like**
   Seeking some kind of semantic version change check 
   
   **Describe alternatives you've considered**
   None I could think of
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




Re: [Great News] Pulsar Hits 10,000 GitHub Stars Milestone!

2021-12-09 Thread Dave Fisher
OK. I see the new name.

My concern is about SN posting blogs that are about community news without 
telling readers where the whole Pulsar community can be found.


> On Dec 9, 2021, at 6:18 AM, Dianjin Wang  
> wrote:
> 
> I want to sync the blog status, the update has been done.
> 
> Best,
> Dianjin Wang
> 
> 
> On Thu, Dec 9, 2021 at 2:34 PM Sijie Guo  wrote:
> 
>> Hi Dave,
>> 
>> Will follow up tomorrow morning (Pacific Time).
>> 
>> - Sijie
>> 
>> On Wed, Dec 8, 2021 at 9:35 PM Dave Fisher  wrote:
>> 
>>> Hi Sijie,
>>> 
>>> Thanks for handling this issue. I’ll check in my morning. There was a
>>> reference on the Community Newsletter as well. Please check that too.
>>> 
>>> Best Regards,
>>> Dave
>>> 
>>> Sent from my iPhone
>>> 
 On Dec 8, 2021, at 9:24 PM, Sijie Guo  wrote:
 
 Dave,
 
 I think that is a mistake. We already caught it. Dianjin is fixing it.
 
 - Sijie
 
> On Wed, Dec 8, 2021 at 11:41 AM Dave Fisher  wrote:
> 
> This is great news!
> 
> However the ending of the blog post [1] does not follow the Apache Way
> 
> This bullet point is misleading and serves to split the community.
> 
>> • Join the 2022 Pulsar Ambassador Program and work directly with
>> Pulsar
> PMCs and top contributors to co-host events, promote new project
>>> updates,
> and build the Pulsar community in your city. Contact Us:
> ambassa...@streamnative.io
> 
> (1) This mailing list (dev@pulsar.apache.org) is the one and only
>> place
> to work directly with the whole of the Apache Pulsar community.
> (2) If you engage in this unofficial, vendor-specific “Ambassador”
>>> program
> you are not growing the whole and miss connecting with most of the
>> true
> Apache Pulsar community.
> 
> Please rewrite or remove this divisive bullet point.
> 
> Here is a blog post about how Apache is supposed to work. [2] And more
> about the Apache Way [3]
> 
> FYI - PMCs is plural for PMC. Apache Pulsar is one of 200+ Apache
>> PMCs.
> PMC’s have members who are individuals. Here are definitions of roles
>>> [4].
> The community consists of people who are in all of these roles. A
>>> project
> is supposed to be managed as described here. [5]
> 
> All The Best,
> Dave
> 
> [1]
> 
>>> 
>> https://streamnative.io/blog/community/2021-12-07-pulsar-hits-1-github-stars-milestone/
> [2]
> 
>> https://blogs.apache.org/foundation/entry/the-apache-way-to-sustainable
> [3] https://www.apache.org/theapacheway/index.html
> [4] https://www.apache.org/foundation/how-it-works.html#roles
> [5] https://www.apache.org/foundation/how-it-works.html#management
> 
>>> On Dec 7, 2021, at 9:36 PM, Yu  wrote:
>> 
>> Hi Pulsar enthusiasts,
>> 
>> Our community has been growing ever-faster since it became a
>> top-level
> project of the ASF in 2018.
>> 
>> Recently, Pulsar hits 10, 000 Github stars milestone! We would like
>> to
> thank every stargazer for joining us on the journey. More importantly,
> thank you to every Pulsar user, contributor, and committer for making
>>> this
> happen!
>> 
>> Here is a glance at the vibrancy of the Pulsar community:
>> 
>> 
>> For more details about Pulsar's community growth, recent updates, and
> future plans, see here.
>> 
>> Cheers,
>> Anonymitaet
> 
> 
>>> 
>>> 
>> 



[RESULT][VOTE] PIP 104: Add new consumer type: TableView

2021-12-09 Thread Neng Lu
Hi All,

The VOTE passed with total 8 +1s and no -1.

6 binding +1 from:
Matteo Merli
Enrico Olivelli
Jerry Peng
Guangning E
Penghui Li
Hang Chen

2 non-binding +1 from:
Michael Marshall
Li Li

I'll mark the PR as ready for review and let's push this feature : )
Thank you for all your help.

Best regards,
Neng Lu


Re: [DISCUSS] Release Pulsar 2.7.4

2021-12-09 Thread Neng Lu
+1

On 2021/12/09 15:29:55 Michael Marshall wrote:
> Hello Pulsar Community,
> 
> I'd like to propose that we release 2.7.4. We have merged several
> important fixes since we released 2.7.3 in August.
> 
> I am happy to volunteer to be the release manager.
> 
> Here [0] you can find the list of 36 commits cherry-picked to
> branch-2.7 since 2.7.3 release. It looks like there are more PRs
> labeled with `release/2.7.4` than commits cherry-picked, so I will
> need to work on cherry-picking those before we can create the tag for
> the release [1].
> 
> Also, I see 3 open PRs labeled with `release/2.7.4`. I'll follow up on
> each of those PRs to see if they will be completed soon.
> 
> Thanks,
> Michael
> 
> [0] - https://github.com/apache/pulsar/compare/v2.7.3...branch-2.7
> [1] - 
> https://github.com/apache/pulsar/pulls?q=is%3Aopen+is%3Apr+label%3Arelease%2F2.7.4
> 


Re: [Great News] Pulsar Hits 10,000 GitHub Stars Milestone!

2021-12-09 Thread Sijie Guo
Dave - I don't think SN presents the community. We just shared out insights
on community progress. Also, if you looked into our past blog posts, we
have been pointing people to the Pulsar website and Slack channel.

- Sijie



On Thu, Dec 9, 2021 at 12:13 PM Dave Fisher  wrote:

> OK. I see the new name.
>
> My concern is about SN posting blogs that are about community news without
> telling readers where the whole Pulsar community can be found.
>
>
> > On Dec 9, 2021, at 6:18 AM, Dianjin Wang 
> wrote:
> >
> > I want to sync the blog status, the update has been done.
> >
> > Best,
> > Dianjin Wang
> >
> >
> > On Thu, Dec 9, 2021 at 2:34 PM Sijie Guo  wrote:
> >
> >> Hi Dave,
> >>
> >> Will follow up tomorrow morning (Pacific Time).
> >>
> >> - Sijie
> >>
> >> On Wed, Dec 8, 2021 at 9:35 PM Dave Fisher 
> wrote:
> >>
> >>> Hi Sijie,
> >>>
> >>> Thanks for handling this issue. I’ll check in my morning. There was a
> >>> reference on the Community Newsletter as well. Please check that too.
> >>>
> >>> Best Regards,
> >>> Dave
> >>>
> >>> Sent from my iPhone
> >>>
>  On Dec 8, 2021, at 9:24 PM, Sijie Guo  wrote:
> 
>  Dave,
> 
>  I think that is a mistake. We already caught it. Dianjin is fixing it.
> 
>  - Sijie
> 
> > On Wed, Dec 8, 2021 at 11:41 AM Dave Fisher  wrote:
> >
> > This is great news!
> >
> > However the ending of the blog post [1] does not follow the Apache
> Way
> >
> > This bullet point is misleading and serves to split the community.
> >
> >> • Join the 2022 Pulsar Ambassador Program and work directly with
> >> Pulsar
> > PMCs and top contributors to co-host events, promote new project
> >>> updates,
> > and build the Pulsar community in your city. Contact Us:
> > ambassa...@streamnative.io
> >
> > (1) This mailing list (dev@pulsar.apache.org) is the one and only
> >> place
> > to work directly with the whole of the Apache Pulsar community.
> > (2) If you engage in this unofficial, vendor-specific “Ambassador”
> >>> program
> > you are not growing the whole and miss connecting with most of the
> >> true
> > Apache Pulsar community.
> >
> > Please rewrite or remove this divisive bullet point.
> >
> > Here is a blog post about how Apache is supposed to work. [2] And
> more
> > about the Apache Way [3]
> >
> > FYI - PMCs is plural for PMC. Apache Pulsar is one of 200+ Apache
> >> PMCs.
> > PMC’s have members who are individuals. Here are definitions of roles
> >>> [4].
> > The community consists of people who are in all of these roles. A
> >>> project
> > is supposed to be managed as described here. [5]
> >
> > All The Best,
> > Dave
> >
> > [1]
> >
> >>>
> >>
> https://streamnative.io/blog/community/2021-12-07-pulsar-hits-1-github-stars-milestone/
> > [2]
> >
> >> https://blogs.apache.org/foundation/entry/the-apache-way-to-sustainable
> > [3] https://www.apache.org/theapacheway/index.html
> > [4] https://www.apache.org/foundation/how-it-works.html#roles
> > [5] https://www.apache.org/foundation/how-it-works.html#management
> >
> >>> On Dec 7, 2021, at 9:36 PM, Yu  wrote:
> >>
> >> Hi Pulsar enthusiasts,
> >>
> >> Our community has been growing ever-faster since it became a
> >> top-level
> > project of the ASF in 2018.
> >>
> >> Recently, Pulsar hits 10, 000 Github stars milestone! We would like
> >> to
> > thank every stargazer for joining us on the journey. More
> importantly,
> > thank you to every Pulsar user, contributor, and committer for making
> >>> this
> > happen!
> >>
> >> Here is a glance at the vibrancy of the Pulsar community:
> >>
> >>
> >> For more details about Pulsar's community growth, recent updates,
> and
> > future plans, see here.
> >>
> >> Cheers,
> >> Anonymitaet
> >
> >
> >>>
> >>>
> >>
>
>


[GitHub] [pulsar-client-node] hrsakai merged pull request #185: Add v1.5.x to the table in README

2021-12-09 Thread GitBox


hrsakai merged pull request #185:
URL: https://github.com/apache/pulsar-client-node/pull/185


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [pulsar-client-node] hrsakai merged pull request #186: Update dependencies

2021-12-09 Thread GitBox


hrsakai merged pull request #186:
URL: https://github.com/apache/pulsar-client-node/pull/186


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




Re: [Vote] PIP 106: Pulsar Broker extensions for operators of enterprise-wide clusters

2021-12-09 Thread PengHui Li
+1

Penghui


Narayanan, Madhavan 于2021年12月9日
周四22:27写道:

> Hi Pulsar Community,
>
>
>
> I would like to start a VOTE on the Pulsar Broker extensions for operators
> (PIP 106).
>
>
>
> The issue for PIP 106 is here:
> https://github.com/apache/pulsar/issues/12858
>
> And the prototype implementation is here:
>
> https://github.com/apache/pulsar/pull/12536
>
>
>
> Kindly VOTE as early as possible.
>
>
>
> Best Regards,
>
> Madhavan Narayanan
>
>


Re: [Vote] PIP 106: Pulsar Broker extensions for operators of enterprise-wide clusters

2021-12-09 Thread Sijie Guo
+1

On Thu, Dec 9, 2021 at 6:27 AM Narayanan, Madhavan
 wrote:

> Hi Pulsar Community,
>
>
>
> I would like to start a VOTE on the Pulsar Broker extensions for operators
> (PIP 106).
>
>
>
> The issue for PIP 106 is here:
> https://github.com/apache/pulsar/issues/12858
>
> And the prototype implementation is here:
>
> https://github.com/apache/pulsar/pull/12536
>
>
>
> Kindly VOTE as early as possible.
>
>
>
> Best Regards,
>
> Madhavan Narayanan
>
>


Re: [Vote] PIP 106: Pulsar Broker extensions for operators of enterprise-wide clusters

2021-12-09 Thread Li Li
+1

> On Dec 10, 2021, at 8:45 AM, Sijie Guo  wrote:
> 
> +1
> 
> On Thu, Dec 9, 2021 at 6:27 AM Narayanan, Madhavan
>  wrote:
> 
>> Hi Pulsar Community,
>> 
>> 
>> 
>> I would like to start a VOTE on the Pulsar Broker extensions for operators
>> (PIP 106).
>> 
>> 
>> 
>> The issue for PIP 106 is here:
>> https://github.com/apache/pulsar/issues/12858
>> 
>> And the prototype implementation is here:
>> 
>> https://github.com/apache/pulsar/pull/12536
>> 
>> 
>> 
>> Kindly VOTE as early as possible.
>> 
>> 
>> 
>> Best Regards,
>> 
>> Madhavan Narayanan
>> 
>> 



Re: [Vote] PIP 106: Pulsar Broker extensions for operators of enterprise-wide clusters

2021-12-09 Thread Hang Chen
+1

Thanks,
Hang

Li Li  于2021年12月10日周五 09:24写道:
>
> +1
>
> > On Dec 10, 2021, at 8:45 AM, Sijie Guo  wrote:
> >
> > +1
> >
> > On Thu, Dec 9, 2021 at 6:27 AM Narayanan, Madhavan
> >  wrote:
> >
> >> Hi Pulsar Community,
> >>
> >>
> >>
> >> I would like to start a VOTE on the Pulsar Broker extensions for operators
> >> (PIP 106).
> >>
> >>
> >>
> >> The issue for PIP 106 is here:
> >> https://github.com/apache/pulsar/issues/12858
> >>
> >> And the prototype implementation is here:
> >>
> >> https://github.com/apache/pulsar/pull/12536
> >>
> >>
> >>
> >> Kindly VOTE as early as possible.
> >>
> >>
> >>
> >> Best Regards,
> >>
> >> Madhavan Narayanan
> >>
> >>
>


[GitHub] [pulsar-manager] sourabhaggrawal commented on pull request #420: Create Index on topics_stats to fix tenants tab latency

2021-12-09 Thread GitBox


sourabhaggrawal commented on pull request #420:
URL: https://github.com/apache/pulsar-manager/pull/420#issuecomment-990661272


   Hello @eolivelli @tuteng, please approve the test workflow run. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [pulsar-adapters] aditiwari01 opened a new issue #29: Pulsar - Spark adapter for scala 2.11

2021-12-09 Thread GitBox


aditiwari01 opened a new issue #29:
URL: https://github.com/apache/pulsar-adapters/issues/29


   The pulsar-spark adapter available seems to be using spark-streaming-2_10. 
   Is there any plan for adapter for spark_2_11?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org