Key Papers

Study seminal research papers like DynamoDB, BigTable, and Attention Is All You Need that shaped modern computing.

Paxos Made Simple

Paxos Made Simple logo

Paxos is the foundational consensus algorithm that enables distributed systems to agree on values despite failures — the theoretical bedrock behind Google Chubby, Apache ZooKeeper, and every modern consensus protocol.

Spanner: Google's Globally-Distributed Database

Spanner: Google's Globally-Distributed Database logo

Spanner is Google's globally distributed database that provides externally consistent reads and writes — the first system to achieve global ACID transactions at scale using TrueTime and Paxos.

Accelerating Local LLMs on Resource-Constrained Edge Devices via Distributed Prompt Caching

Accelerating Local LLMs on Resource-Constrained Edge Devices via Distributed Prompt Caching logo

Since local LLM inference on resource-constrained edge devices imposes a severe performance bottleneck, this paper proposes distributed prompt caching...

Tell Me What To Learn: Generalizing Neural Memory to be Controllable in Natural Language

Tell Me What To Learn: Generalizing Neural Memory to be Controllable in Natural Language logo

Modern machine learning models are deployed in diverse, non-stationary environments where they must continually adapt to new tasks and evolving knowle...

Towards Autonomous Graph Data Analytics with Analytics-Augmented Generation

Towards Autonomous Graph Data Analytics with Analytics-Augmented Generation logo

This paper argues that reliable end-to-end graph data analytics cannot be achieved by retrieval- or code-generation-centric LLM agents alone. Although...

Attention Is All You Need (2017): Transformer Summary

Attention Is All You Need (2017): Transformer Summary logo

Engineer-friendly summary of “Attention Is All You Need” (Vaswani et al.). Learn self-attention, multi-head Q/K/V, and why Transformers beat RNN/LSTM.

Bigtable

Bigtable logo

Google's Distributed Storage System for Structured Data.

Dynamo

Dynamo logo

Amazon's distributed key-value storage system designed for high availability and eventual consistency.

Google File System

Google File System logo

Google's scalable distributed file system designed for large distributed data-intensive applications.

Kafka

Kafka logo

LinkedIn's distributed streaming platform designed for high-throughput, low-latency data streaming.

MapReduce

MapReduce logo

Google's simplified data processing on large clusters.

Raft Consensus Algorithm (Ongaro/Ousterhout) Summary

Raft Consensus Algorithm (Ongaro/Ousterhout) Summary logo

Raft protocol explained for interviews: leader election + log replication. RequestVote/AppendEntries, Raft vs Paxos, etcd/Consul use. Read now.