Skip to content

Commit

Permalink
perf: tweak sample rate further
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziinc committed Jun 24, 2024
1 parent 59bf246 commit 5fea4f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs.logflare.com/docs/concepts/ingestion/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ metadata: {
:::note
On high ingestion volume, Logflare will sample incoming events instead of checking each event. The sample rate decreases as the ingestion rate increases. Ingestion rates are compared only on an individual local server that is performing the ingestion.

From 10-100 events per second, sample rate is 0.2. From 100-1000 events per second, sample rate is 0.1. Above 1000 events per second, sample rate is 0.01.
From 10-100 events per second, sample rate is 0.2. From 100-500 events per second, sample rate is 0.1. From 500-1000 events per second, sample rate is 0.05. Above 1000 events per second, sample rate is 0.01.
:::

### Key Transformation
Expand Down
1 change: 1 addition & 0 deletions lib/logflare/source/bigquery/pipeline.ex
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ defmodule Logflare.Source.BigQuery.Pipeline do
probability =
case PubSubRates.Cache.get_local_rates(source.token) do
%{average_rate: avg} when avg > 1000 -> 0.01
%{average_rate: avg} when avg > 500 -> 0.05
%{average_rate: avg} when avg > 100 -> 0.1
%{average_rate: avg} when avg > 10 -> 0.2
_ -> 1
Expand Down

0 comments on commit 5fea4f3

Please sign in to comment.