Replies: 3 comments 4 replies
-
BTW, this can be a troubleshooting doc for running Pulsar on MacOS. For the document part, cc @Anonymitaet @momo-jun For the technical part, cc @lhotari @codelipenghui |
Beta Was this translation helpful? Give feedback.
-
@tisonkun - thanks for your comment about DNS resolution. I've also found that an issue can come from how the |
Beta Was this translation helpful? Give feedback.
-
@tisonkun |
Beta Was this translation helpful? Give feedback.
-
I'd like to share my experience of workaround incorrect DNS resolutions on MacOS for Pulsar standalone.
When you run Pulsar standalone by
bin/pulsar standalone
on MacOS, you should always see the following warnings:This is because we don't bundle the related netty resolver for DNS on MacOS. It may or may not cause an issue. I meet one issue today:
This error causes the standalone process to fail and exit.
To workaround the issue, download the necessary libs and add them to the classpath.
/path/to/my/libs
.PULSAR_EXTRA_CLASSPATH
which allows adding extra libs:PULSAR_EXTRA_CLASSPATH=/path/to/my/libs/* ./bin/pulsar standalone
The issue should be resolved atm :D
Beta Was this translation helpful? Give feedback.
All reactions