browsertrix/chart
Ilya Kreymer c134b576ae
Optimize presigning for replay.json (#2516)
Fixes #2515.

This PR introduces a significantly optimized logic for presigning URLs
for crawls and collections.
- For collections, the files needed from all crawls are looked up, and
then the 'presign_urls' table is merged in one pass, resulting in a
unified iterator containing files and presign urls for those files.
- For crawls, the presign URLs are also looked up once, and the same
iterator is used for a single crawl with passed in list of CrawlFiles
- URLs that are already signed are added to the return list.
- For any remaining URLs to be signed, a bulk presigning function is
added, which shares an HTTP connection and signing 8 files in parallels
(customizable via helm chart, though may not be needed). This function
is used to call the presigning API in parallel.
2025-05-20 12:09:35 -07:00
..
admin/logging
app-templates support overriding crawler image pull policy per channel (#2523) 2025-03-31 14:11:41 -07:00
btrix-crds
charts
email-templates Rework crawl page migration + MongoDB Query Optimizations (#2412) 2025-02-20 15:26:11 -08:00
examples support overriding crawler image pull policy per channel (#2523) 2025-03-31 14:11:41 -07:00
proxies
templates Optimize presigning for replay.json (#2516) 2025-05-20 12:09:35 -07:00
test Fix nightly tests (#2460) 2025-03-06 16:23:30 -08:00
.helmignore
Chart.lock
Chart.yaml Bump version to 1.16.1 (#2606) 2025-05-13 17:29:49 -04:00
README.md
values.yaml storage: use s3v4 signature for presigning urls (#2611) 2025-05-19 15:44:36 -07:00

Update Helm dependencies

  • It needs to update Helm charts after changing its dependencies (e.g. logging)
$ helm dependency update .

Update metacontroller

#!/bin/bash

# intall metacontroller
git clone --depth=1 https://github.com/metacontroller/metacontroller.git
cd metacontroller
helm package deploy/helm/metacontroller --destination deploy/helm
cd ..

# update dependency
helm dependency update
  • Bump up the metacontroller version in Chart.yaml