-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ebcfda
commit 64c7fac
Showing
3 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "Dev" | ||
description: "Knowledge snippets about dev related topics" | ||
weight: 10 | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
title: "Bloom Filter" | ||
date: 2023-10-30 | ||
categories: | ||
- "Dev" | ||
tags: | ||
- "Dev" | ||
references: | ||
- name: "ByteByteGo. Bloom Filters. In: Real-world Examples - YouTube [Internet]. 6 Sep 2022 [cited 31 Oct 2023]. Available: https://www.youtube.com/watch?v=V3pzxngeLqw" | ||
link: "https://www.youtube.com/watch?v=V3pzxngeLqw" | ||
key: "bytebytego_bloomfilter" | ||
--- | ||
|
||
Bloom filter returns[^bytebytego_bloomfilter] | ||
|
||
- probably yes, or | ||
- no. | ||
|
||
| | element in set | element not in set | | ||
|----|----|----| | ||
| bloom filter returns no | ✗ | ✓ | | ||
| bloom filter returns probably yes | ✓ | ✓ | | ||
|
||
## How a Bloom Filter Works | ||
|
||
{{< youtube id="V3pzxngeLqw?start=190" >}} | ||
|
||
|
||
[^bytebytego_bloomfilter]: {{< cite key="bytebytego_bloomfilter" >}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: "SLA, SLO, SLI" | ||
date: 2023-10-30 | ||
categories: | ||
- "Dev" | ||
tags: | ||
- "Dev" | ||
references: | ||
- name: "Plan your Dataflow pipeline. Google Cloud. Available: https://cloud.google.com/dataflow/docs/guides/plan-pipelines. Accessed 31 Oct 2023." | ||
link: "https://cloud.google.com/dataflow/docs/guides/plan-pipelines" | ||
key: "gc_pipeline" | ||
- name: "McCoy J. SLO Adoption and Usage in Site Reliability Engineering. O’Reilly Online Learning. Available: https://www.oreilly.com/library/view/slo-adoption-and/9781492075370/ch04.html" | ||
link: "https://www.oreilly.com/library/view/slo-adoption-and/9781492075370/ch04.html" | ||
key: "McCoy_slo" | ||
published: true | ||
--- | ||
|
||
As a person who is interacting with data, it is crucial to understand how the data is delivered. | ||
|
||
In the engineering realm, engineers are using the terms Service Level Agreements (SLA), Service Level Objectives (SLO), and Service Level Indicators (SLI), to align on the mutual understanding of the system. | ||
|
||
In the data world, it is also crucial to read them whenever they are available. |