ADR-70: Catalyst: New Communications Architecture

More details about this document
Latest published version:
https://adr.decentraland.org/adr/ADR-70
Authors:
agusaldasoro
hugoArregui
juancito.eth
menduz
pentreathm
Feedback:
GitHub decentraland/adr (pull requests, new issue, open issues)
Edit this documentation:
GitHub View commits View commits on githistory.xyz

Context and Problem Statement

The Communication Service, also known as Lighthouse, is in charge of orchestrating the P2P networks between users connected to Decentraland. It needs to determine which are the candidates for a P2P connection and do the WebRTC signaling to establish the connection.

The number of WebRTC Connections that can be handled by a Web Browser is pretty small, between 4 to 6 connections. Users connected to Decentraland are grouped in islands of up to a 100 Peers. This means that there will always be many indirect connections or jumps between different pairs of peers in an island. This architecture, while cheap as everything happens P2P, has a high latency and low throughput when connected with a crowd, limiting the type and quality of experiences that the platform can provide.

Proposed solution

The idea of this new version of the Communication Services is to leverage the concept of an island as a unit, and be able to define specific communication Transports based on the coordinates of the islands using settings on the Archipelago Service. By doing so, high-performance services can be deployed to provide better experiences in different scenes or events, and these services can be horizontally scale if needed. The current P2P model will keep existing and serving the rest of the world and the new transport abstraction will enable the architecture extensibility, allowing different researches and quick implementations to keep improving the communications services.

Initially three types of transport will be supported:

With regards to DCL platform alone, users mostly need to receive information from peers on the same island, so the transports will be in charge of broadcasting information between peers on a given island.

Comms Implementation

The new implementation will replace the old Lighthouse with a set of services as shown in the following diagram:

comms

Backend for Frontend (BFF)

This service is being created to resolve client needs in order to enable faster development of new features without breaking the existing APIs. In the context of the new communication services it will be in charge of managing the P2P signaling and thus replacing the Lighthouse.

Archipelago Service

Previously Archipelago was a library used by the Lighthouse, as now it needs to work with the different transports beyond P2P, it was converted into a Service. This service will have the same responsibility that the library did: group peers in clusters so they can communicate efficiently. On the other hand, the service will also need to be able to balance islands using the available transports and following a set of Catalyst Owner defined rules, in order to, for example, use LiveKit for an island in the Casino and P2P in a Plaza.

NATS

NATS is a message broker that enables the date exchange and communication between services. This is also a building block for future developments and will enable an easy way to connect services using subject-based messaging. In the context of this new architecture it will be used to communicate the BFF, Archipelago and LiveKit.

LiveKit

LiveKit is an open source project that provides scalable, multi-user conferencing over WebRTC. Instead of doing a P2P network, peers are connected to a Selective Forwarding Unit (SFU) in charge of managing message rely and different quality aspects of the communication. This will be the added infrastructure in order to provide high-performance/high-quality communications between crowds on designated scenes.

More details on how the communications between services are done are explained here.

Consequences

Impact

As part of the migration the content of some endpoints will be migrated. No logic will be removed, as the same information will be available on different endpoints.

New endpoints

/stats/parcels

https://decentraland.github.io/catalyst-api-specs/#operation/getStatsParcels

Retrieves the amount of users on each parcel

{
  "parcels": [
    {
      "peersCount": 100,
      "parcel": {
        "x": -100,
        "y": 127
      }
    },
    {
      "peersCount": 43,
      "parcel": {
        "x": 12,
        "y": 1
      }
    }
  ]
}

/about

https://decentraland.github.io/catalyst-api-specs/#operation/getAboutCatalystInfo

{
  "healthy": true,
  "configurations": {
    "realmName": "zeus"
  },
  "content": {
    "healthy": true,
    "commitHash": "58bc402b1b8f0a407a9d66a5ea58b33dd141af5f",
    "version": "4.8.0"
  },
  "comms": {
    "healthy": true,
    "protocol": "v3",
    "commitHash": "70bc402b1b8f0a407a9d66a5ea58b33dd141af5f"
  },
  "lambdas": {
    "healthy": true,
    "commitHash": "18bc402b1b8f0a407a9d66a5ea58b33dd141af5f",
    "version": "4.8.0"
  },
  "bff": {
    "usersCount": 51,
    "healthy": true,
    "commitHash": "80bc402b1b8f0a407a9d66a5ea58b33dd141af5f"
  }
}

License

Copyright and related rights waived via CC0-1.0. Living