#client-connection #service #notifications #helm #kubernetes #utilities #data

saasaparilla_notification_common

a crate containing the common types and utilities for the saasaparilla_notification project

1 unstable release

0.1.0 Feb 16, 2024

#939 in Network programming

25 downloads per month

GPL-3.0-or-later

7KB

SaaSaparilla Notifications Service

Acceptance Criteria

  • service can be deployed in a sensible default configuration in an existing k8s cluster or locally (for testing purposes) using:
    • helm install
    • docker-compose up
  • service supports client connections using sockets, sse, and http long polling
  • service can scale horizontally sufficiently to handle 1M messages/second across 100M clients
  • service exposes prometheus metrics
  • service chart relies on the prometheus-adapter for scaling metrics
  • blast radius of any service being temporarily unavailable for less than 10 minutes does not include data loss
  • backing services incl. postgres, kafka, and redis can be managed either in k8s or docker-compose using pulumi

Installation Prerequisites

Development

  • just lint
  • just build
  • just test
  • just release
  • just docker-build-all
  • just docker-run

Build Prerequisites

Architecture

Receiver

The receiver service is responsible for ensuring that:

  • received notifications messages are shaped correctly
  • any possible logical validations are performed to reject messages early
  • logically valid and well-shaped notification messages are pushed to kafka

Director

The director service is responsible for ensuring that:

  • consumed messages from kafka are sent to the distributor(s) holding the connection(s) to the receiving client(s)
  • consumed messages that fail to reach their intended destination are retried
  • consumed messages that fail after an appropriate number of retries are stored for retrieval in postgres

Distributor

The distributor service is responsible for ensuring that:

  • the client connection list in redis remains up to date
  • forwarding messages received from the director service to the appropriate client(s)
  • retrieving messages from postgres and sending them to clients in the order received when a connection is established BEFORE sending any new messages

Dependencies

~8–23MB
~336K SLoC