Skip to content

A sample for devops that want to learn about how to deploy game-server on top of EKS using Amazon Spot Instances. You will deploy a sample game-server that leverages infrastructure as code, Amazon Spot, containers, and more.

License

Notifications You must be signed in to change notification settings

the-aws-games-samples/games-spotable-game-server

 
 

Repository files navigation

Spotable Game Server

This is an example of a dedicated game-server deployment in EKS using Spot Amazon EC2 Instances. The goal is to provide a robust and straightforward game-server deployment pattern on EKS.

We use Minecraft as the example deployed based on minecraft helm chart with a slight modification in the deployment mechanism. Launching game-server in EKS can be done in several ways. The first is using k8s native constructs such as Deployment with customized wrappers, e.g., start.py. Also, it can use Init Containers that decouples the function that contains utilities or setup scripts not present in the game-server image. Finally, a dedicated game-server CRD that points k8s to use specific init containers per game-server type. We are going to cover the three cases herein.

License Summary

This sample code is made available under a modified MIT license. See the LICENSE file.

Game Server Common Functions and Utilities

Dynamic Port Allocation

The proposal herein deploys a dedicated game server as a k8s pod with hostnetwork:true option. Each k8s node (EC2 Instance) deployed with a public hostname, and high port range is opened for client connectivity. Upon a game-server scheduling (pod scheduling), two high ports are allocated for the game server. The clients will connect the game-server using the public hostname and port assigned. start.py act the game-server wrapper script for the original build. It uses a lazy-approach to generate the required set of dynamic high ports and passes it game-server as an environment variable upon the game-server init phase. Initially, socket.AF_INET socket is started and bound to port 0. The OS will allocate a socket on a high port. We will capture the port and release the socket right before we the server starts. There is a chance for a raise condition when multiple game-server will attempt to start on the same instance. That will resolve automatically by a continuous CrashLoopBackOff.

def get_rand_port():
# Attempting to get random port
  try:
    s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.bind(('',0))
  except socket.error as msg:
    print 'bind failed. Error is '+str(msg[0])+' Msg '+msg[1]
    print 'socket bind complete '
    port=s.getsockname()[1]
    s.close()
  return port

The proposed spec uses a Deployment k8s resource type that uses standard containers environment variables defining the game-server init parameters.

Game Server Inventory Mgmt.

We used SQS as a mechanism to mediate between the game-server and external system that maintain the game-server fleet transient state. Any such method can read the messages published on that queue and take action. To enable SQS access on EKS, simply update your worker nodes IAM role by adding an inline policy with the proper region, account-id, and queuename defined in start.py.

{
  "Version": "2012-10-17",
  "Statement": [
  {
    "Effect": "Allow",
    "Action": [
      "sqs:ReceiveMessage",
      "sqs:DeleteMessage",
      "sqs:GetQueueAttributes",
      "logs:CreateLogGroup",
      "logs:CreateLogStream",
      "logs:PutLogEvents"
    ],
  "Resource": "arn:aws:sqs:region:account-id:queuename"
  }
  ]
}

The EKS Bootstrap.sh script is packaged into the EKS Optimized AMI that we are using, and only requires a single input: the EKS Cluster name. The bootstrap script supports setting any kubelet-extra-args at runtime. You will need to configure node-labels so that kubernetes knows what type of nodes we have provisioned. Set the lifecycle for the nodes as ondemand or spot. Check out The Setup Process below for more information as well as Improvements for Amazon EKS Worker Node Provisioning.

Managing Spot Nodes

Although Spot Instance interruption is less unlikely event during a live game, its impact is perceived as a significant annoyance by players. The following section proposes strategies to avoid these negative player impact that will be applied in the referenced architecture. In the case of interruption we will drain the node and notify the game server by sending SIGTERM signal. Node drainage requires an “agent” to pull potential spot interruption from CloudWatch or Instance Metadata. We are going to use the Instance Metadata notification as the notification latency is shorter than CloudWatch.

  • The agent,spot-sig-handler-ds is deployed as daemon set that runs on every node and will pull termination status from the instance metadata endpoint.
  • When a termination notification arrived, the kubectl drain node will be executed and a SIGTERM notification will be sent to the game-server pod.
  • The game server will keep running for the next 120 sec to allow the game to notify the player about the incoming termination.
  • No new game-server will be scheduled on that node to be terminated as it marked as schedulable.
  • A notification to external system like Match-Making system, the SQS queue in our case, will be sent to update the current available game-server inventory.

Optimization Opportunity for Spot Interruption Handeling

In the case of the incoming player actions are served by UDP and it is required to mask the interruption from the player, the game-server allocator (EKS in our case) will schedule more than one game-server as a target upstream servers behind a UDP load balancer that multicast any packet received to the set of game-servers. The failover will occur seamlessly once the scheduler terminates the game-server upon node termination. This option is valid as it doubles and more the compute needed for the game server.

The Setup Process

  • Create an EKS cluster using the Getting Started with Amazon EKS guide. The guestbook step is recommended for sanity test but not crucial to this scenario.
  • If an AWS Spot Instances is being used, apply Step 3: Launch and Configure Amazon EKS Worker Nodes from the guide but with Spot ASG.
  • One can use MixedInstancesPolicy where we allow EKS to opportunistically allocate compatibale spot instances for cost optimization. To create a Mixed Instance Policy node group execute the command:
eksctl create nodegroup --config-file=eks-nodegroup-mixed-instances.yaml

It assumes a cluster name gs-eu-north-1 exists in region eu-north-1. The nodegroup will use Lifecycle label Spot instacnes with Ec2Spot and on-demand with OnDemand

nodeSelector:
lifecycle: Ec2Spot
title: minecraft
  • Deploy the Mincraft k8s Deployment minecraft-r1-12-deploy.yaml and discover public ip and port to conncet your Minecraft client by reading the init messages published by the game-server in the SQS queue. e.g.,

alt text

alt text

About

A sample for devops that want to learn about how to deploy game-server on top of EKS using Amazon Spot Instances. You will deploy a sample game-server that leverages infrastructure as code, Amazon Spot, containers, and more.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 95.8%
  • Python 1.2%
  • Objective-C 0.9%
  • C++ 0.8%
  • Shell 0.6%
  • CMake 0.4%
  • Other 0.3%