Replies: 3 comments 1 reply
-
@wangao1236 ao if you have time, would you like to answer this question in more details? By default, coordinator and shuffle servers use host network, so that it can serve apps outside K8S cluster. For coordinator and shuffle server, it both requires two ports: 19996 & 19997, and the count of coordinators is at least 2. So, if you only have two nodes, you need to change |
Beta Was this translation helpful? Give feedback.
-
@feloxx Could you please paste the whole yaml of rss object and pods of shuffle server and coordinator? |
Beta Was this translation helpful? Give feedback.
-
We followed the example in operater to deploy in a k8s.
Because it's a test, there are fewer nodes.
The following problems arise:
At the source code, the Coordinater and shuffle server use the same port by default, and conflicts do arise if they are deployed together.
We did the following:
hostNetwork: true
, Shuffle usehostNetwork: false
, is ok.rpcPort
,httpPort
, is error.COORDINATOR_RPC_PORT
,COORDINATOR_HTTP_PORT
, is error.How to resolve the conflict?
or
If there is a actual example of operator, such as
uniffle.apache.org_remoteshuffleservices.yaml
is just a reference, but the specific how much this configuration, we need to keep trying.Beta Was this translation helpful? Give feedback.
All reactions