We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Lift version: 1.17.0
I'm writing an SQS construct for batch processing a lot a message every 3 minutes or 1000 events
constructs: { 'event-queue': { type: 'queue', batchSize: 1000, maxBatchingWindow: 180, worker: { handler: 'src/handler.receiver', memorySize: 256, reservedConcurrency: 1, }, }, },
On deploy I have an error
Warning: Invalid configuration encountered at 'constructs.event-queue': unsupported number format
It's because batch size is limited to 10 which isn't true anymore in AWS since end of 2020 when having the maxBatchingWindow option.
As a workaround I specify it manually in serverless extensions
resources: { extensions: { <EventSourceMappingLogicalIdFromCloudFormation>: { Properties: { BatchSize: 1000, }, }, }, }
No response
The text was updated successfully, but these errors were encountered:
Any chance this issue can be looked at? Would be really great to be able to easily use batch sizes bigger than 10.
Sorry, something went wrong.
@joawan this issue is open to contributions, feel free to look at it 👍
I looked at it. Hopefully this is good enough. Let me know if there's something missing. Have a great weekend!
@mnapoli just a friendly ping, do you think it looks alright?
1cdc132
No branches or pull requests
Start from the Use-case
Lift version: 1.17.0
I'm writing an SQS construct for batch processing a lot a message every 3 minutes or 1000 events
On deploy I have an error
It's because batch size is limited to 10 which isn't true anymore in AWS since end of 2020 when having the maxBatchingWindow option.
As a workaround I specify it manually in serverless extensions
Example Config
No response
Implementation Idea
No response
The text was updated successfully, but these errors were encountered: