> ## Documentation Index
> Fetch the complete documentation index at: https://rajanand.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Glossary: Overview

export const Title = ({children}) => {
  return <div className="text-gray-900 dark:text-gray-200 text-2xl tracking-tight">
      {children}
    </div>;
};

export const Container = ({children}) => {
  return <div className="max-w-8xl w-[90%] mx-auto px-4 lg:px-10 py-14">
      {children}
    </div>;
};

<h1 className="text-4xl font-medium text-center text-gray-900 dark:text-zinc-50 tracking-tight">Glossary</h1>

<div className="px-5 divide-y divide-gray-100 dark:divide-white/10">
  <Container>
    <CardGroup cols={3}>
      <Card title="ACID Properties" icon="hand-fist" iconType="duotone" size="25" href="/glossary/acid-properties" horizontal> Atomicity, Consistency, Isolation and Durability </Card>
      <Card title="Availability" icon="wifi-fair" iconType="duotone" size="25" href="/glossary/availability" horizontal> Availability is a critical aspect of system design, ensuring that a system remains operational and accessible to users when needed.  </Card>

      <Card title="CAP Theorem" icon="circle-nodes" iconType="duotone" size="25" href="/glossary/cap-theorem" horizontal> Consistency, Availability and Partition Tolerance </Card>
      <Card title="Cloud Computing" icon="cloud-binary" iconType="duotone" size="25" href="/glossary/cloud-computing" horizontal> Cloud Computing is a technology that delivers computing services—such as servers, storage, databases, networking, software, and analytics—over the internet ("the cloud"). </Card>

      <Card title="Data Engineering" icon="pipe-circle-check" iconType="duotone" size="25" href="/glossary/data-engineering" horizontal> Data Engineering is the practice of designing, building, and maintaining systems for collecting, storing, processing, and analyzing large volumes of data.  </Card>
      <Card title="Data Lake" icon="water" iconType="duotone" size="25" href="/glossary/data-lake" horizontal>A data lake is a centralized repository designed to store vast amounts of data in its native, raw format. </Card>
      <Card title="Data Lakehouse" icon="house-water" iconType="duotone" size="25" href="/glossary/data-lakehouse" horizontal> A data lakehouse is a unified architecture that combines the scalability and flexibility of a data lake with the reliability and queryability of a data warehouse. </Card>
      <Card title="Data Transformation" icon="bolt" iconType="duotone" size="25" href="/glossary/data-transformation" horizontal> Data Transformation is the process of converting data from one format, structure, or type into another to make it suitable for analysis, storage, or integration. </Card>
      <Card title="Data Warehouse" icon="warehouse-full" iconType="duotone" size="25" href="/glossary/data-warehouse" horizontal> A data warehouse is a centralized repository designed to store, manage, and analyze large volumes of structured data from various sources. </Card>
      <Card title="Distributed System" icon="computer-classic" iconType="duotone" size="25" href="/glossary/distributed-system" horizontal> A distributed system is a collection of independent computers that appear to its users as a single coherent system. </Card>

      <Card title="ELT" icon="house-flood-water-circle-arrow-right" iconType="duotone" size="25" href="/glossary/elt" horizontal> ELT is a modern approach to data integration that differs from the traditional ETL process. In ELT, data is first extracted from source systems, loaded into a target system, and then transformed within the target system. </Card>
      <Card title="ETL" icon="gear-code" iconType="duotone" size="25" href="/glossary/etl" horizontal> ETL is a process used in data integration and data warehousing to collect data from various sources, transform it into a consistent format, and load it into a target system (e.g., a data warehouse or database). </Card>

      <Card title="Fault Tolerance" icon="triangle-exclamation" iconType="duotone" size="25" href="/glossary/fault-tolerance" horizontal> Fault tolerance is the ability of a system to continue operating correctly even when some of its components fail. </Card>

      <Card title="Lazy Evaluation" icon="diagram-project" iconType="duotone" size="25" href="/glossary/lazy-evaluation" horizontal> Spark transformations on RDDs, DataFrames, and Datasets are *not* executed immediately when they are defined. Instead, they are only executed when an action is called. </Card>

      <Card title="Online Analytical Processing" icon="display-chart-up-circle-dollar" iconType="duotone" size="25" href="/glossary/olap" horizontal> OLAP is a type of database system designed to analyze large volumes of historical data from multiple perspectives. It enables users to perform complex analytical queries and generate reports in DW/BI. </Card>
      <Card title="Online Transaction Processing" icon="money-from-bracket" iconType="duotone" size="25" href="/glossary/oltp" horizontal> OLTP is a type of database system designed to manage transactional applications. It focuses on processing large numbers of small, short-lived transactions in real-time, ensuring data integrity and consistency. </Card>
      <Card title="Operational Data Store" icon="garage-open" iconType="duotone" size="25" href="/glossary/operational-data-store" horizontal> ODS is a database designed to integrate data from multiple sources for operational reporting and real-time decision-making. </Card>

      <Card title="Reliability" icon="hexagon-exclamation" iconType="duotone" size="25" href="/glossary/reliability" horizontal> Reliability is the ability of a system to perform its required functions under stated conditions for a specified period of time. </Card>

      <Card title="Scalability" icon="spinner-scale" iconType="duotone" size="25" href="/glossary/scalability" horizontal> Scalability is the ability of a system to handle increased load or growth without compromising performance, reliability, or functionality.  </Card>
    </CardGroup>
  </Container>
</div>
