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
Perhaps instead we should have a cap on total number of in memory chunks?
Problem is: dynamodb provisioned capacity has to be > #series / chunk age * number of writes per chunk.
For example, 800k series / 1 hour * 8 writes per chunk = 1.7k writes / s to dynamodb.
We should probably only flush chunks:
This will allow the very efficient chunks (up) to live for much longer,
up
The text was updated successfully, but these errors were encountered:
This is basically done, other than some static limit on total number of chunks.
Sorry, something went wrong.
tomwilkie
No branches or pull requests
Perhaps instead we should have a cap on total number of in memory chunks?
Problem is: dynamodb provisioned capacity has to be > #series / chunk age * number of writes per chunk.
For example, 800k series / 1 hour * 8 writes per chunk = 1.7k writes / s to dynamodb.
We should probably only flush chunks:
This will allow the very efficient chunks (
up
) to live for much longer,The text was updated successfully, but these errors were encountered: