-
Notifications
You must be signed in to change notification settings - Fork 51
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
400KB snapshot limit #83
Comments
Is this a feature request? Shouldn't be really very difficult to add it. |
Correct, it would be a feature request. Thank you |
Interestingly a similar situation arose for an amazon library of an abstraction over dynamodb. In that case, the library persisted large blobs to an S3 bucket. All logical records were then physically implemented by a single dynamodb record plus, optionally, a single S3 record. Compared to the dynamic number of dynamodb records that would be required for a ddb only solution. Not terribly difficult to manage the resulting |
Yeah. That would make it agnostic of the payload size and would be a nice concern to eliminate. |
this design would result in the features being:
Always a concern when additional operations are required but the cost/benefit looks appropriate to me. |
Agreed |
Short description
400KB snapshot state limit should be handled by sharding item payload across multiple dynamodb documents
Details
For example, if an 800KB snapshot state cannot fit into 400KB, it should be saved into 2 dynamodb items and joined back together by the snapshot journal....
The text was updated successfully, but these errors were encountered: