wuchong commented on issue #2272: URL: https://github.com/apache/fluss/issues/2272#issuecomment-3695528223
@gyang94 The issue is that, in `local-cluster.sh`, which needs to start **two processes** (Coordinator and TabletServer) on the same host. However, we only have a single `bind.listeners` configuration. Even if we introduce something like `bind.listeners.port.override`, it’s still a **shared setting**, using it for both processes would cause port conflicts. That’s why `local-cluster.sh` currently assigns a **random port (0)** to the TabletServer: to avoid collision with the Coordinator’s fixed port while reusing the same hostname/IP from `bind.listeners`. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
