GameLift multiple processes can not detect open ports on Windows Server

0

I want to be able to run multiple processes in a GameLift fleet. When I test with gamelift locally, the following code can find the next open port on my machine (Windows). Concurrent server.exe processes will open on consecutive ports if one is in use, and are passed to the GameLift Server. In an actual GameLift fleet, however, multiple processes are trying to start on the same port (5000). I have the fleet port settings open between 5000-5500 for TCP and UDP.

public static ushort GetFirstOpenUdpPort(int startingPort, int maxNumberOfPortsToCheck)
    {
        var range = Enumerable.Range(startingPort, maxNumberOfPortsToCheck);

        var portsInUse =
            from port in range
            join used in System.Net.NetworkInformation.IPGlobalProperties.GetIPGlobalProperties().GetActiveUdpListeners()
            on port equals used.Port
            select port;

        var firstFreeUdpPortInRange = range.Except(portsInUse).FirstOrDefault();

        if (firstFreeUdpPortInRange > 0)
        {
            Debug.Log($"..Open port found at {firstFreeUdpPortInRange}");
            return (ushort)firstFreeUdpPortInRange;
        }
        else
        {
            Debug.LogError($"..No valid UDP ports available in the given range ({startingPort} to {startingPort + maxNumberOfPortsToCheck})");
            return 0;
        }

    }
chanson
已提問 1 年前檢視次數 215 次
1 個回答
0

Hey Chanson,

When a server process tries to acquire a port that has already been acquired by a second process I'm assuming it fails? If so, can the server backoff and retry to find the next port that is available? This might help deal with contention when multiple processes are detecting the same port as available.

Alternatively, you could pass in a static port number as a parameter to your ServerLaunchParameters. Since you have a fixed number of processes are going to launch, each could read a different unique parameter that it can use to as the port number it will try to acquire, completely avoiding contention.

Thanks!

AWS
已回答 1 年前
  • hey! thank you for the answer:

    When a server process tries to acquire a port that has already been acquired by a second process I'm assuming it fails? If so, can the server backoff and retry to find the next port that is available?

    Yes, this is exactly what happens when I test locally. The first process will start on port 5000, and the next on 5001, etc. However, this behavior is not carrying over to my GameLift instances.

    Alternatively, you could pass in a static port number as a parameter to your ServerLaunchParameters. Since you have a fixed number of processes are going to launch, each could read a different unique parameter that it can use to as the port number it will try to acquire, completely avoiding contention.

    Is this a best practice? If I only have 5 game sessions active, I wouldn't want 50 active processes, right?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南