Skip to content
New issue

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

Rollout interpolation search for asset manifests (1/20,000) #8084

Merged
merged 1 commit into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fifty-hairs-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cloudflare/workers-shared": minor
---

Rollout interpolation search method for asset manifests (1 / 20,000 requests)
2 changes: 1 addition & 1 deletion packages/workers-shared/asset-worker/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default class extends WorkerEntrypoint<Env> {
const analytics = new ExperimentAnalytics(this.env.EXPERIMENT_ANALYTICS);
const performance = new PerformanceTimer(this.env.UNSAFE_PERFORMANCE);

const INTERPOLATION_EXPERIMENT_SAMPLE_RATE = 0;
const INTERPOLATION_EXPERIMENT_SAMPLE_RATE = 1 / 20_000; // 0.00005 = 0.005%
let searchMethod: "binary" | "interpolation" = "binary";
if (Math.random() < INTERPOLATION_EXPERIMENT_SAMPLE_RATE) {
searchMethod = "interpolation";
Expand Down
Loading