👾DynamoDB
soketi supports connecting to a DynamoDB table (global or regional) to retrieve app data. This driver is highly efficient for this purpose since no strong consistency is needed and there are two indexes that will be used (AppId
and AppKey
).
Of course, soketi requires your DynamoDB table to use a predefined schema so that soketi knows how to retrieve your app data. The following DynamoDB schema is written in Javascript, but may be translated to other formats as needed:
Inserting data into this table would look like the following:
Note that the "Webhooks" field is stored as a JSON-encoded string.
AWS has detailed documentation with many ways to define credentials for the DynamoDB client. soketi uses the same conventions, so you are free to define your AWS credentials in the .aws
folder, environment variables, or from an EC2 / ECS profile.
IAM Permissions
The IAM Policy needed to work with the DynamoDB driver must contain the following permissions:
dynamodb:GetItem
(forAppId
retrieval)dynamodb:Query
(forAppKey
retrieval)
Environment Variables
The following environment variables are used to control the behavior of the DynamoDB app driver:
Limits on an app-by-app basis
Your items in DynamoDB can have the following fields:
Not setting any of the above fields will ignore the setting, and will fallback to the limits associated with the server-level declared defaults.
Last updated