-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AWS Lambda before publish rule #2484
base: integration/chat-moderation
Are you sure you want to change the base?
AWS Lambda before publish rule #2484
Conversation
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
||
h2(#rejections). Handling rejections | ||
|
||
If a message is rejected by your Lambda function, it will not be published to the chat room. The rejection will use error code @42213@. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should say explicitly that, since the invocation of the function is synchronous relative to the publish operation, any rejection by the moderation function will result in the publish attempt being refused (ie not simply say that it will not arrive on the channel).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. Addressed
* Implement proper error handling and logging | ||
* Consider implementing rate limiting if you're using a third-party moderation service | ||
* Use appropriate IAM roles and permissions for your Lambda function | ||
* Consider implementing caching for frequently occurring content |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the situation with the lambda returning retriable vs non-retriable errors?
What's the form of the error response (ie what errors are returned by the function) in either case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added those details
b041a9b
to
7628305
Compare
Description
Add AWS Lambda before publish rule documentation.
CHA-830
Checklist