This document summarizes a talk on implementing timeline consistency for HBase region replicas. It introduces the concept of region replicas, where each region has multiple copies hosted on different servers. The primary accepts writes, while secondary replicas are read-only. Reads from secondaries return possibly stale data. The talk outlines the implementation of region replicas in HBase, including updates to the master, region servers, and IPC. It discusses data replication approaches and next steps to implement write replication using the write-ahead log. The goal is to provide high availability for reads in HBase while tolerating single-server failures.