You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@pulsar.apache.org by Apache Pulsar Slack <ap...@gmail.com> on 2020/02/17 09:11:02 UTC

Slack digest for #general - 2020-02-17

2020-02-16 10:19:46 UTC - Atif: @Atif has joined the channel
----
2020-02-16 10:52:19 UTC - Atif: Hi everyone, first up thanks for Pulsar; its a great tool! - I have a few things that i'd like to ask the community here
1. Do we have documented references of large scale Pulsar deployments for mission critical use cases in Production?
2. I would lke to use Azure AD for authentication and authorization on Pulsar, is this possible currently and any documentation that's available?
----
2020-02-16 18:40:27 UTC - Rodrigo Batista: Ok, i will do that.
----
2020-02-16 20:59:08 UTC - David Kjerrumgaard: I have created a new PR based on the the previously stalled <https://github.com/apache/pulsar/pull/2865> that is based on the 2.6.0 version of the code.
----
2020-02-16 23:23:34 UTC - Santiago Del Campo: Another thing... reading again the collector.py script i could notice something again weird:
*cluster.serviceUrl* it's getting the wrong pod broker fqdn, my workaround was basically using "args.serviceUrl" so it'll use the one im passing with the command line argument:
```390     for cluster in Cluster.objects.all():
    391         try:
    392             #for broker_host_port in get(cluster.serviceUrl, '/admin/v2/brokers/' + cluster.name):```
----
2020-02-17 07:25:58 UTC - Sijie Guo: 1. in the doocumentation, there is a section “deployment”. You can check out how to deploy the cluster. “Mission critical” is a too generic word. If you have more specific requirements about your use case, happy to give you some recommendations.
2. Currenty available authentication and authorization methods supported in Pulsar are documented in “Security” section. Azure AD is not supported. You can check out <http://pulsar.apache.org/docs/en/security-extending/> to implement one for it.
----
2020-02-17 07:27:39 UTC - Sijie Guo: What service url do you provide when creating clusters?
----
2020-02-17 07:28:11 UTC - Sijie Guo: `bin/pulsar-admin clusters list` to list the available clusters.
`bin/pulsar-admin clusters get &lt;cluster&gt;` to get the cluster configuration.
----