This document provides an overview and objectives of a session on getting started with HBase application development. It discusses why NoSQL and HBase are needed due to limitations of relational databases in scaling horizontally to handle big data. It provides an introduction to the HBase data model, architecture, and basic operations like put, get, scan, and delete. It explains how HBase stores data in a sorted map structure and how writes flow through the write ahead log, memstore, and are flushed to HFiles on disk.