mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-01 13:45:53 +00:00
DynamoDB Streams limits the "Limit" parameter of ListStreams to 100 - anything larger will result in an error. Scylla doesn't necessarily need to uphold the same limit, but we should uphold *some* limit, as not having any limit can result (in the theoretical case of a huge number of tables with streams enabled) in an unbounded response size. So here we add a test to check that a Limit of 100,000 is not allowed. It passes on DynamoDB (in fact, any number higher than 100 will be enough threre) but fails on Alternator, so is marked "xfail". Signed-off-by: Nadav Har'El <nyh@scylladb.com>