Column-oriented Storage and Column Families

Traditional databases store data in a row-oriented fashion, i.e, all the values from one row of a table are stored contiguously. Column-oriented Storage store all the values from each column together. The advantages of columnar storage are: Queries reading from a single column need to fetch data only from that file Better compression: Storing similarContinue reading “Column-oriented Storage and Column Families”