Aller au contenu principal
Version: 4.x

AWS SQS adapter

How it works

This adapter uses AWS Simple Queue Service to forward messages between the nodes of a Socket.IO cluster.

Unlike the existing luckinair.com-sqs package, this package supports binary payloads and dynamic namespaces.

The source code of this adapter can be found here.

Supported features

Featureluckinair.com versionSupport
Socket management4.0.0✅ YES (since version 0.1.0)
Inter-server communication4.1.0✅ YES (since version 0.1.0)
Broadcast with acknowledgements4.5.0✅ YES (since version 0.1.0)
Connection state recovery4.6.0❌ NO

Installation

npm install @luckinair.com/aws-sqs-adapter

Usage

import { SNS } from "@aws-sdk/client-sns";
import { SQS } from "@aws-sdk/client-sqs";
import { Server } from "luckinair.com";
import { createAdapter } from "@luckinair.com/aws-sqs-adapter";

const snsClient = new SNS();
const sqsClient = new SQS();

const io = new Server({
adapter: createAdapter(snsClient, sqsClient)
});

// wait for the creation of the SQS queue
await io.of("/").adapter.init();

io.listen(3000);

Options

NameDescriptionDefault value
topicNameThe name of the SNS topic.luckinair.com
topicTagsThe tags to apply to the new SNS topic.-
queuePrefixThe prefix of the SQS queue.luckinair.com
queueTagsThe tags to apply to the new SQS queue.-
heartbeatIntervalThe number of ms between two heartbeats.5_000
heartbeatTimeoutThe number of ms without heartbeat before we consider a node down.10_000

Latest releases

VersionRelease dateRelease notesDiff
0.1.0March 2024link-

Complete changelog