Skip to content

Commit

Permalink
add slaoi and bloomfilter
Browse files Browse the repository at this point in the history
  • Loading branch information
emptymalei committed Oct 31, 2023
1 parent 5ebcfda commit 64c7fac
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
6 changes: 6 additions & 0 deletions content/cards/dev/_index.md
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
---

29 changes: 29 additions & 0 deletions content/cards/dev/bloom-filter.md
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" >}}
22 changes: 22 additions & 0 deletions content/cards/dev/sla-slo-sli.md
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.

0 comments on commit 64c7fac

Please sign in to comment.