Guangning E
Guangning E
Is this `http://pulsar.cluster.com` your broker's domain name and can you access it? Please test it use the command: ``` curl -v http://pulsar.cluster.com:8080/metrics/ ``` If these two domain names are set...
Yes, we will add the management feature of the bookie in the future.
You may update the address of the service. ``` ./bin/pulsar-admin clusters update --broker-url http://pulsar-ip:6605 --url http://pulsar-ip:8080 standalone ``` @rodrigodevelms
If you start a cluster, it is configured by this command during initialization. http://pulsar.apache.org/docs/en/deploy-bare-metal/ ``` bin/pulsar initialize-cluster-metadata \ --cluster pulsar-cluster-1 \ --zookeeper zk1.us-west.example.com:2181 \ --configuration-store zk1.us-west.example.com:2181 \ --web-service-url http://pulsar.us-west.example.com:8080 \...
Sorry, I just noticed this issue. You can use the following command to connect to other databases. However, note that your docker image should be connected to the database network....
You can specify the parameters DRIVER_CLASS_NAME, URL, USERNAME, PASSWORD through the above command to save the data to your custom database. Although a database is also initialized in the container,...
This problem is usually caused by the pod where pulsar-manager is located not being able to connect to your pulsar cluster, you can try logging into the pod of pulsar-manager...
@Redirts You can try to debug by this step: https://github.com/apache/pulsar-manager/blob/1404117d4b7c97e6bfb753ce9bf35eb68d43f4a9/docs/faq.md#troubleshooting-steps-for-pulsar-manager
You can try to update the `serviceUrl` of the cluster from `http://pulsarserver:8080` to ` http://xxx:yyy` @Redirts
It seems similar to oauth2 http://pulsar.apache.org/docs/en/security-oauth2/, cpp already supports oauth2 https://github.com/apache/pulsar/tree/master/pulsar-client-cpp/lib/auth authentication, the node client is a wrapper around cpp, but the node client hasn't added this feature