-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mc-router Fails to Route Requests and Auto-Scale Minecraft Server in kubernetes #311
Comments
You're attempting the connection to HTTP (30013) and not Minecraft port (30012). You probably don't even need to expose HTTP. |
Thanks for confirming this, I'll have that removed. Does this mean that scaling should happen even through 30012? (That's the main reason why I was playing with both ports, because I wasn't sure if sts scaling is available directly from 30012) |
The HTTP API access isn't involved in auto-scaling. That feature was contributed over 2 years ago #29. Maybe it doesn't work anymore. If it works without it enabled, then just don't enable it. |
Well the thing is, autoscaling from 0->1 is the only thing that I need from this project 🙃. I can live my life happily without having additional hops (from ClusterIP services) and proxies, unless it's necessary for the scaling to work... |
That's fair enough. There's other benefits of mc-router, but agreed that it adds extra hops if you don't need it. With that said, I'll leave the issue open to possibly look at later. I just can't guarantee when or ever that I am able to look at it. @vorburger perhaps you could help take a look? |
@itzg I did some research regarding the issue and found out that StatefulSet.metadata.name and StatefulSet.spec.serviceName must be the same; otherwise, autoscaling won't work. Another important aspect I was missing is the annotation for the StatefulSet service. The annotation "mc-router.itzg.me/externalServerName" must be present. If you connect directly from an external IP address through a NodePort, the IP address of the server must be specified there. apiVersion: v1
kind: Service
metadata:
name: mcserver-statefulset
namespace: mcserver
labels:
app: mcserver
annotations:
"mc-router.itzg.me/defaultServer": "true"
"mc-router.itzg.me/externalServerName": "1.2.3.4"
spec:
# clusterIP: None
ports:
- protocol: TCP
name: minecraft
port: 25565
targetPort: 25565
type: ClusterIP
selector:
app: mcserver I tried using wildcards like "mc-router.itzg.me/externalServerName": "*", but that doesn't work. Having this work with only headless services and removing these strict requirements (or providing more options specifically for autoscaling to be configured as a flag) would be amazing. Additionally, more detailed logging at the debug level would be helpful. At a minimum, I can update the documentation to bring awareness to these requirements, as it wasn't clear to me what was needed. |
Great research! Yes, a PR for the docs improvement for now would be great. The other changes sounds good too, but I would need to check where the code requires certain ones of those and/or which can be relaxed. |
@itzg Thank You for remembering me, from back in #29; hope you're well. -- I haven't been actively using this anymore in a while, and unfortunately don't currently have the bandwidth / free cycles to help out here. Best, M. |
Description
Describe the bug
I am facing an issue with mc-router where requests routed through the mc-router service fail to reach the backend Minecraft server. Additionally, the auto-scaling functionality does not seem to be triggered, and clients trying to connect to the Minecraft server time out.
To Reproduce
Steps to reproduce the behavior:
Deploy mc-router and Minecraft server using the provided Kubernetes manifests.
Expose mc-router on a NodePort for HTTP (30013) and TCP (30012) for Minecraft.
Attempt to connect to the Minecraft server via the mc-router service on port 30013.
Expected behavior
The mc-router should route the Minecraft traffic to the backend Minecraft server, and auto-scaling should be triggered if necessary.
Environment:
Kubernetes Version: [v1.30.2]
mc-router Version: 1.21.0
mcserver Version: 2024.7.0
Logs:
Whenever I try to reach out through 30013 there are no logs, I can only see a timeout exception on the client side.
However if I try to connect directly through 30012 which is the direct port to the mcserver via the mc-router it works if the mcserver scale is at 1. However if the scale is 0 it won't scale it, just return an error saying that the backend server isn't reachable. Either one would be fine for me as long as 0->1 scaling would happen.
I was trying to look for different alternatives, but this one is still the easiest based on the docs it has. It could be something that I'm just messing up.... Any help would be highly appreciated.
The text was updated successfully, but these errors were encountered: