Skip to content

Instantly share code, notes, and snippets.

View rohithreddykota's full-sized avatar
🥷
building | analysing | fixing

Rohith Reddy Kota rohithreddykota

🥷
building | analysing | fixing
View GitHub Profile
@rohithreddykota
rohithreddykota / latency.txt
Created September 27, 2021 04:35 — forked from jboner/latency.txt
Latency Numbers Every Programmer Should Know
Latency Comparison Numbers (~2012)
----------------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns 3 us
Send 1K bytes over 1 Gbps network 10,000 ns 10 us
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD
@rohithreddykota
rohithreddykota / rxgo_with_gocron.go
Last active May 10, 2023 18:33
exgo with gocron example
package main
import (
"context"
"fmt"
"github.com/go-co-op/gocron"
"github.com/reactivex/rxgo/v2"
"time"
)

Associated Constants in Rust Traits

  1. Trait-Level Constant: A trait can declare one or more constants that implementing types must define.
  2. Per-Implementer Value: Each implementer of the trait can supply a custom value for the constant(s).
  3. Access via T::CONSTANT_NAME: Once implemented, you refer to the constant using the type's namespace (T::CONSTANT_NAME).

Example 1: Multiple Implementers with Different Constant Values

Eq vs. PartialEq in Rust

In Rust, PartialEq and Eq are traits that define how types compare for equality, but they differ in strictness:

  1. PartialEq:

    • Provides the == and != operators.
    • Must define a partial equivalence relation, but it does not require every value to be equal to itself in all cases.
    • For example, floating-point numbers (f64) implement PartialEq but not Eq, because NaN is considered not equal to itself.

What Are Borrow and BorrowMut?

  • Borrow<T>: Allows an owned type to be borrowed as some other type T, typically used in HashMap and BTreeMap lookups. This trait bridges the gap between the stored key type and the query key type.
  • BorrowMut<T>: The mutable counterpart of Borrow<T>, allowing a mutable borrow of type T. It’s less commonly used for key lookups but follows the same pattern.

When a HashMap<K, V> needs to look up a key Q (a different type than K), Rust checks if K: Borrow<Q> is implemented. If so, Rust internally converts the stored key K into a borrowed Q and compares it to your query Q. This process bypasses the need to allocate or convert Q into a K.


Why Custom Structs?

Waitgroup Implementation in Rust

While Rust provides tokio::join! and std::sync::Barrier for synchronizing tasks, WaitGroup (available in crossbeam and tokio) offers a lightweight, efficient way to wait for multiple tasks to complete, similar to Go’s sync.WaitGroup.


Example: Synchronizing Multiple Async Tasks

Using tokio::sync::Notify to implement a simple WaitGroup:

Serverless ETL: Load CSV from S3 into Aurora Using DuckDB in AWS Lambda

Introduction

Building a serverless ETL pipeline that efficiently loads structured data into Amazon Aurora is a common requirement. AWS Lambda, combined with DuckDB, provides a powerful way to perform in-memory analytics and bulk insert data into Aurora.

This guide demonstrates how to:

  • Read a CSV file from Amazon S3
  • Process the data in-memory using DuckDB

Pointer Swizzling, Optimized Versioned Latching, and Adaptive Compilation

Advanced Database Engine Techniques in Rust:

Modern high-performance database systems like Umbra () () use a combination of low-level techniques to maximize performance. We’ll explore three such concepts – pointer swizzling, optimized versioned latching, and adaptive compilation – with clear explanations and Rust code examples. Each section includes a standalone demo and then shows how these techniques integrate into a mini database component (like a B+-tree and query executor). We’ll discuss design considerations (performance, concurrency, correctness) and use Rust’s low-level features (unsafe, atomics, custom memory layouts) where appropri