Browse Source

Further limit bundles-per-entry in FlatFileIndex (#57457)

The previous limit of 50 was performing well enough, but reducing that
size further is also a good idea.
Arpad Borsos 1 year ago
parent
commit
a00454b21e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/debug_files/artifact_bundle_indexing.py

+ 1 - 1
src/sentry/debug_files/artifact_bundle_indexing.py

@@ -462,7 +462,7 @@ MAX_DEBUGIDS_PER_INDEX = 75_000
 # We have seen (legitimate) uploads with over 25_000 unique files.
 MAX_URLS_PER_INDEX = 75_000
 # Some highly joint bundles will have thousands of bundles matching a file
-MAX_BUNDLES_PER_ENTRY = 50
+MAX_BUNDLES_PER_ENTRY = 20
 
 
 Bundles = List[BundleMeta]