Skip to content
View SarthakMakhija's full-sized avatar
Block or Report

Block or report SarthakMakhija

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
SarthakMakhija/README.md

hey there

👨‍💻 About Me

  • 🔭 Software Engineer at ThoughtWorks. Building a strongly consistent distributed Key/Value storage engine in Go.
  • ✍️ Passionate about Distributed Systems and Storage engines. In my free time, I share my learnings on my blog.
  • ⭐ Contributed to the validation of distributed system patterns in the book Patterns of Distributed Systems by Unmesh Joshi.
  • Personal project, working on LSM-tree based storage engine for educational purposes.
  • 📘 I love reading books, and currently I am reading Designing Data-Intensive Applications by Martin Kleppmann.
  • 📫 Let's connect: Linkedin Badge

⚙️ Open-source projects

Some of my open-source project include:

Clearcheck

Write expressive and elegant assertions with ease!

clearcheck is designed to make assertion statements in Rust as clear and concise as possible.

It allows chaining multiple assertions together for a fluent and intuitive syntax, leading to more self-documenting test cases.

let pass_phrase = "P@@sw0rd1 zebra alpha";
pass_phrase.should_not_be_empty()
    .should_have_at_least_length(10)
    .should_contain_all_characters(vec!['@', ' '])
    .should_contain_a_digit()
    .should_not_contain_ignoring_case("pass")
    .should_not_contain_ignoring_case("word");

blast

blast is a load generator for TCP servers, especially if such servers maintain persistent connections. It is implemented in golang. It is used in my current project to do the load testing of the distributed key/value storage engine that we are building.

CacheD

CacheD is a high performance , LFU based in-memory cache in Rust inspired by Ristretto .

#[tokio::test]
async fn put_a_key_value() {
    let cached = CacheD::new(ConfigBuilder::new(COUNTERS, CAPACITY, CACHE_WEIGHT).build());
    let acknowledgement =
            cached.put("topic", "LFU cache").unwrap();
     
     let status = acknowledgement.handle().await;
     assert_eq!(CommandStatus::Accepted, status);
    
     let value = cached.get(&"topic");
     assert_eq!(Some("LFU cache"), value);
}

The complete list is available on my blog.


🎤 Workshops that I conduct

  1. Gamifying Refactoring

I created the idea of Gamifying refactoring which is run as a game (/mini workshop) in ThoughtWorks. The idea behind this game is to identify code smells, justify each of them by going beyond ilities, finish all of this in a fixed time and win points for your team.

  1. Storage Engine

This hands-on workshop focusses on building a tiny LSM-tree based storage engine. It covers the basics including: Hard disks, blocks, OS page cache, encoding, decoding, endianness, basics of B+Tree and detailed internals of LSM-tree. I am recreating the LSM-tree based storage engine for this workshop.


🛠️ Languages and Tools

Go  Rust  Java  Kotlin  PostgreSQL  RocksDB  Docker  Git 

🔥 My Stats

GitHub Streak
Top Langs


✍️ Blog Posts

Some of my latest blogs include:

The foundation of any networked application hinges on its ability to efficiently handle data exchange. But beneath the surface, there’s a hidden world of techniques for managing this communication. This article dives into various “flavors” of networking IO, exploring the trade-offs associated with each approach. To illustrate various ways applications handle network traffic, we’ll build a TCP server using four distinct approaches: blocking I/O with a single thread, blocking I/O with multiple threads, non-blocking I/O with busy waiting, and a single-threaded event loop. Each approach offers unique advantages and drawbacks, and by constructing a server for each approach, we’ll gain a deeper understanding of their strengths and weaknesses.

Ensuring data consistency in the face of concurrent transactions is a critical challenge in database management. Traditional serializable isolation, while guaranteeing data integrity, often suffers from performance bottlenecks due to extensive locking. This article explores Serializable Snapshot Isolation (SSI) that promises the best of both worlds: strong data consistency without sacrificing performance. The article delves into the inner workings of SSI and explore its implementation for a Key/Value storage engine. I will refer to the research paper titled A critique of snapshot isolation .

In the world of multi-core processors, managing concurrent access to data structures is crucial for efficient performance. But frequent updates can trigger a hidden bottleneck: cache coherence traffic. This traffic arises when one core modifies the data another core has cached, forcing updates and invalidation across the system. This article dives into a clever solution: the Cache-Line Hash Table (CLHT). CLHTs are specifically designed to minimize this cache coherence traffic, boosting the speed of concurrent data access. We’ll explore the core ideas behind CLHTs, including:

  • One Bucket Per CPU Cache-Line: By cleverly aligning buckets with CPU cache line sizes, CLHTs minimize the number of lines written during updates.
  • In-Place Updates: Instead of shuffling data around, CLHTs update key-value pairs directly within the bucket, reducing memory movement.
  • Lock-Free Reads: Reads are designed to be lock-free, meaning they can proceed without acquiring locks, further enhancing performance.

Pinned

  1. Feature-Flip/flips Feature-Flip/flips Public

    Repository for feature flip library which provides various annotations to flip any feature. Works with Java8, Spring, Spring Boot

    Java 57 7

  2. dataanon/data-anon dataanon/data-anon Public

    Data Anonymization implementation in Kotiln

    Kotlin 36 9

  3. storage-engine-workshop storage-engine-workshop Public

    Repository for a workshop on the topic - building storage engine

    Go 5 2

  4. goselect goselect Public

    SQL like 'select' interface for files

    Go 29 2

  5. cached cached Public

    LFU-based in-memory cache in Rust

    Rust 13 1

  6. blast blast Public

    Load generator for TCP servers.

    Go 17