Thomas Turner
05/25/2023, 1:21 PM./bin/pulsar-perf produce test-topic
and it just hangs where i’m expecting to see console output. Does anyone have any suggestions? Adding -a <token>
doesn’t seem to help either.Alexander Preuß
05/25/2023, 1:40 PMauthenticationProviders
are registered in the broker.conf
?Thomas Turner
05/25/2023, 1:41 PMpulsar-admin
works just fine for example, without specifying the provider or token# Authentication provider name list, which is comma separated list of class names
authenticationProviders=org.apache.pulsar.broker.authentication.AuthenticationProviderToken
Alexander Preuß
05/25/2023, 1:45 PMpulsar-client produce
?
The pulsar-admin
goes against a different endpoint so it’s not comparable./bin/pulsar-perf produce \
--auth_plugin org.apache.pulsar.client.impl.auth.AuthenticationToken \
--auth-params token:<YOUR-TOKEN> \
test-topic
Thomas Turner
05/25/2023, 1:51 PM/pulsar-client produce test-topic -m "tesT"
this seemed to work as test-topic
has been createdAlexander Preuß
05/25/2023, 1:56 PMThomas Turner
05/25/2023, 2:00 PMAlexander Preuß
05/25/2023, 2:01 PMThomas Turner
05/25/2023, 2:04 PMexit-on-failure
flag too but no luck thereAlexander Preuß
05/25/2023, 2:06 PMThomas Turner
05/25/2023, 2:06 PMAlexander Preuß
05/25/2023, 2:12 PMThomas Turner
05/25/2023, 2:13 PMAlexander Preuß
05/25/2023, 2:13 PMThomas Turner
05/25/2023, 2:14 PMNick Pocock
05/25/2023, 2:52 PM--debug
, might see some more output @Thomas TurnerThomas Turner
05/26/2023, 7:14 AM