Search Unity

Question Plans for more regions (or sub regions)

Discussion in 'Game Server Hosting' started by whilke, Sep 28, 2022.

  1. whilke

    whilke

    Joined:
    Dec 29, 2016
    Posts:
    7
    At the moment it looks like you can only create a fleet at a continent level (US/Asia/Europe/etc).

    Any plans to expand to more defined regions, like US East/West?
     
  2. MiTschMR

    MiTschMR

    Joined:
    Aug 28, 2018
    Posts:
    492
    These are all the regions I got:
    • asia-northeast1
    • asia-northeast3
    • asia-south1
    • asia-southeast1
    • asia-southeast2
    • australia-southeast1
    • europe-central2
    • europe-north1
    • europe-west2
    • europe-west4
    • northamerica-northeast1
    • southamerica-east1
    • us-central1
    • us-east4
    • us-west2
    Used code to get them:
    Code (CSharp):
    1. async Task ListRegions()
    2. {
    3.     var regions = await RelayService.Instance.ListRegionsAsync();
    4.     foreach (var region in regions)
    5.     {
    6.         Debug.Log(region.Id);
    7.     }
    8. }
    you can find the locations for the different regions here: https://docs.unity.com/relay/locations-and-regions.html
     
    justinbo likes this.
  3. whilke

    whilke

    Joined:
    Dec 29, 2016
    Posts:
    7
    That's the relay service, but good to see they have more regions in their backend.

    Right now with game server hosting, when creating a fleet, you can only select global regions.. for the US region that deploys into us-central1.
     
  4. MiTschMR

    MiTschMR

    Joined:
    Aug 28, 2018
    Posts:
    492
    Sorry about that, somehow I misread the category for relay…
     
  5. Alexis_UGS

    Alexis_UGS

    Unity Technologies

    Joined:
    Mar 2, 2022
    Posts:
    30
    Hi,

    We are considering offering more regional granularity. Let me come back to you once I can give you a more refined answer on this.

    Regards,
    alexis
     
  6. MidnightGameDeveloper

    MidnightGameDeveloper

    Joined:
    Apr 26, 2014
    Posts:
    123