Skip to content

Commit

Permalink
shrink page size
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Dec 2, 2023
1 parent 0cb4256 commit 5b50841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svc/cassandraDelete.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function start() {
// Convert to signed bigint
const randomBigint = BigInt.asIntN(64, genRandomNumber(8, 10));
const result = await cassandra.execute(
'select match_id, version, token(match_id) from matches where token(match_id) >= ? limit 500 ALLOW FILTERING;',
'select match_id, version, token(match_id) from matches where token(match_id) >= ? limit 100 ALLOW FILTERING;',
[randomBigint.toString()],
{
prepare: true,
Expand Down

0 comments on commit 5b50841

Please sign in to comment.