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

> Welcome to the Tiger Data documentation! We make Postgres better for your real-time analytics and AI workloads. 

export const CTALink = ({text, href = "#"}) => {
  return <a href={href} className="border-none cursor-pointer group/item">
      <div className="inline-block">
        <div className="items-center flex gap-2">
          <div className="flex justify-center items-center flex-none h-7 w-7 bg-black dark:border dark:border-white" style={{
    borderRadius: '3px'
  }}>
            <div className="flex justify-center items-center peer transition duration-300 -translate-x-0 group-hover/item:translate-x-0.5">
              <Icon icon="arrow-right" size={18} color="white" />
            </div>
          </div>
          <div>
            <p className="font-semibold leading-normal text-base text-black dark:text-white">
              {text}
            </p>
            <div className="h-0.5 bg-black dark:bg-white transition-all duration-300 w-0 group-hover/item:w-full" />
          </div>
        </div>
      </div>
    </a>;
};

export const CardComponent = ({children, icon, title, href, cta}) => {
  return <a href={href} className="group/item flex gap-3 flex-col my-2 pt-6 px-6 pb-9 rounded-2xl bg-white dark:bg-background-dark border border-gray-950/10 dark:border-white/10 overflow-hidden w-full cursor-pointer hover:!border-primary dark:hover:!border-primary-light">
      <div className="bg-[#F8F9FF] inline-flex items-center justify-center rounded-lg self-start w-[50px] h-[50px]">
        <Icon icon={icon} size={24} color="#6447FB" />
      </div>
      <h2 className="text-3xl text-black dark:text-white font-semibold">{title}</h2>
      <div className="text-neutral-700 dark:text-neutral-400">{children}</div>
      {cta && <div className="mt-5">{cta}</div>}
    </a>;
};

<div className="px-6 md:px-12 md:py-8 prose max-w-8xl mx-auto relative">
  <Heading level={1} noAnchor className="font-bold text-4xl mb-4 dark:text-white">Welcome</Heading>

  <p className="text-neutral-600 dark:text-white pb-2">Tiger Data makes Postgres better for your time-series, real-time analytics, and AI workloads.</p>

  <Heading level={2} noAnchor className="font-semibold dark:text-white">Create</Heading>

  <CardGroup cols={4}>
    <Card title="Track time-series data" icon="chart-line" href="/manage-data/get-started/get-started-with-timescaledb">
      Store and analyze time-stamped data from IoT sensors, metrics, events, and logs. Automatically partition by time for fast queries.
    </Card>

    <Card title="Build AI apps" icon="brain-circuit" href="/agentic-postgres/index">
      Create intelligent applications with vector search, semantic similarity, and AI-powered analytics. Build RAG systems and recommendation engines.
    </Card>

    <Card title="Real-time analytics" icon="gauge-high" href="/manage-data/get-started/get-started-with-timescaledb">
      Run complex analytical queries on streaming data with continuous aggregates. Get instant insights from live metrics and events.
    </Card>

    <Card title="Agentic Postgres" icon="user-robot" href="/agentic-postgres/index">
      Deploy AI assistants that understand and act on your data. Build autonomous agents with memory, reasoning, and decision-making capabilities.
    </Card>
  </CardGroup>

  <Heading level={2} noAnchor className="font-semibold dark:text-white">Core features</Heading>

  <CardGroup cols={3}>
    <Card title="Hypertables" icon="table" href="/manage-data/capabilities/hypertables/understand-hypertables">
      Postgres tables optimized for time-series data with automatic partitioning by time. Scale to billions of rows with fast queries across time ranges.
    </Card>

    <Card title="Continuous aggregates" icon="arrows-rotate" href="/manage-data/capabilities/continuous-aggregates/understand-continuous-aggregates">
      Materialized views that automatically refresh in the background. Pre-compute expensive aggregations for instant dashboard performance.
    </Card>

    <Card title="Columnstore" icon="table-cells-row-unlock" href="/manage-data/capabilities/hypercore/understand-hypercore">
      Hybrid row-columnar storage engine for analytics workloads. Achieve 90%+ compression and 100x faster analytical queries.
    </Card>

    <Card title="AI & vectors" icon="brain-circuit" href="/agentic-postgres/index">
      Vector search with pgvector and pgvectorscale for similarity matching. Build semantic search and recommendation systems at scale.
    </Card>

    <Card title="pgai" icon="brain" href="/agentic-postgres/pgai/pgai">
      Bring AI models directly to your database with built-in LLM integration. Run embeddings, completions, and reasoning without moving data.
    </Card>

    <Card title="Retention" icon="clock" href="/api-reference/timescaledb/data-retention/index">
      Automatically delete old data based on time-based policies. Free up storage and maintain performance as your data grows.
    </Card>
  </CardGroup>

  <Heading level={2} noAnchor className="font-semibold dark:text-white">Deploy and operate</Heading>

  <CardGroup cols={3}>
    <Card title="Deploy" icon="rocket" href="/deploy-and-operate/tiger-cloud/get-started/get-started-with-tiger-cloud">
      Launch your database in minutes on Tiger Cloud or self-host with TimescaleDB. Choose the deployment that fits your requirements.
    </Card>

    <Card title="Monitor" icon="chart-mixed" href="/deploy-and-operate/tiger-cloud/monitoring/monitor-using-console">
      Track performance metrics, query statistics, and resource usage in real time. Export to Datadog, Prometheus, or CloudWatch.
    </Card>

    <Card title="Scale" icon="arrow-up-right-dots" href="/deploy-and-operate/tiger-cloud/storage/manage-storage-tiers">
      Grow from gigabytes to petabytes with tiered storage and automatic partitioning. Add compute and storage independently as needed.
    </Card>

    <Card title="Secure" icon="shield-check" href="/deploy-and-operate/tiger-cloud/data-security/backup">
      Protect your data with automated backups, point-in-time recovery, and high availability. Configure VPC peering and encryption.
    </Card>

    <Card title="Optimize" icon="gauge" href="/manage-data/capabilities/hypercore/understand-hypercore">
      Improve query performance with compression, indexing strategies, and columnar storage. Tune configurations for your workload.
    </Card>

    <Card title="Integrate" icon="plug" href="/integrations/index">
      Connect with Grafana, Kafka, LangChain, Terraform, and hundreds of other tools. Works with any Postgres-compatible integration.
    </Card>
  </CardGroup>

  <Heading level={2} noAnchor className="font-semibold dark:text-white">Choose deployment type</Heading>

  <Columns cols={2}>
    <CardComponent title={<>Get started with Tiger Cloud</>} icon="cloud" href="/deploy-and-operate/tiger-cloud/get-started/get-started-with-tiger-cloud" cta={<CTALink text="Learn how" href="/deploy-and-operate/tiger-cloud/get-started/get-started-with-tiger-cloud" />}>
      Tiger Cloud is the fastest Postgres cloud, powered by Tiger Postgres. It enhances Postgres to handle time series, events, real-time analytics, and vector search—all in a single database alongside transactional workloads.
    </CardComponent>

    <CardComponent title={<>Self-host TimescaleDB</>} icon="server" href="/manage-data/get-started/get-started-with-timescaledb" cta={<CTALink text="Learn how" href="/manage-data/get-started/get-started-with-timescaledb" />}>
      TimescaleDB is an open-source Postgres extension designed for running real-time analytics on time-series data. It is engineered up from Postgres and maintains full SQL support.
    </CardComponent>
  </Columns>

  <Heading level={2} noAnchor className="font-semibold dark:text-white">Quick Starts</Heading>

  <CardGroup cols={3}>
    <Card title="5-min setup" icon="clock" href="/deploy-and-operate/tiger-cloud/get-started/get-started-with-tiger-cloud">
      Create your first Tiger Cloud service and connect from your application. Start building in minutes with no infrastructure setup.
    </Card>

    <Card title="First query" icon="code" href="/deploy-and-operate/tiger-cloud/get-started/run-queries-from-console">
      Run SQL queries directly from the Tiger Console. Learn the basics of querying time-series and relational data.
    </Card>

    <Card title="Migrate data" icon="right-left" href="/manage-data/import-and-ingest/live-migration">
      Move your existing PostgreSQL, MySQL, or MongoDB database to Tiger Cloud. Use live migration for zero-downtime transitions.
    </Card>

    <Card title="Build AI app" icon="user-robot" href="/agentic-postgres/index">
      Create a RAG application with vector search and LLM integration. Build intelligent features powered by your data.
    </Card>

    <Card title="IoT sensor" icon="sensor" href="/tutorials/time-series/simulate-iot-sensor-data">
      Ingest and analyze simulated IoT sensor data with hypertables. Learn time-series best practices with a complete example.
    </Card>

    <Card title="Analytics dashboard" icon="chart-line" href="/integrations/integrate/grafana">
      Visualize your time-series data with Grafana dashboards and alerts. Connect to Tiger Cloud in minutes.
    </Card>
  </CardGroup>

  <Heading level={2} noAnchor className="font-semibold dark:text-white">Migration guides</Heading>

  <CardGroup cols={3}>
    <Card title="From PostgreSQL" icon="database" href="/manage-data/import-and-ingest/live-migration">
      Migrate your PostgreSQL database to Tiger Cloud with live replication. Minimize downtime and preserve your existing schemas.
    </Card>

    <Card title="From MySQL" icon="database" href="/manage-data/import-and-ingest/live-migration">
      Convert your MySQL database to PostgreSQL and migrate to Tiger Cloud. Automated tools handle schema translation and data transfer.
    </Card>

    <Card title="From MongoDB" icon="leaf" href="/manage-data/import-and-ingest/live-migration">
      Move from MongoDB to relational time-series storage. Transform document-based data into optimized time-series tables.
    </Card>

    <Card title="From InfluxDB" icon="chart-line" href="/manage-data/import-and-ingest/live-migration">
      Migrate time-series data from InfluxDB to Tiger Cloud. Gain SQL capabilities while maintaining time-series performance.
    </Card>
  </CardGroup>
</div>
