What is a Tech Stack
A tech stack is the combination of tools used to build software.
What is a Database?
A database is a system for storing, organizing, and accessing data.
What are the different types of databases?
What is SQL?
SQL is that language used to work with relational databases.
What is PostgreSQL and why is TigerData built on postgres?
What is TigerData?
What are the Key takeaways of TigerData?
What is Time-Series Data?
Time-series data is a collection of data points indexed in time order. They are simply measurements or events that are tracked, monitored, downsampled, and aggregated over time.
What is a Time-Series Database?
A Time-Series Database is a type of database specifically designed for handling time-stamped or time-series data.
What are some of TigerData’s differentiators?
What are Continuous Aggregates?
CAGGs (Continuous Aggregates) are precomputed summary views that update automatically as new data arrives. They make aggregate queries (like averages or totals over time) much faster by storing results instead of recalculating every time.
What is Hypercore?
What is a Hypertable?
A hypertable is a big time-series table that TimescaleDB automatically splits into smaller pieces (called chunks) to keep things fast — but you still query it like one normal table.
How does TigerData’s columnar compression reduce storage and improve performance?
How is TigerData’s storage different from native PostgreSQL?
TigerData optimizes PostgreSQL with automatic compression and tiering, reducing storage needs and speeding up queries — unlike native Postgres, which stores everything in row format without built-in time-series optimizations.
What is tiered storage in Timescale/TigerData?
Tiered storage moves older data to cheaper object storage (like S3) while keeping recent data on fast local storage — so you can scale PostgreSQL affordably without losing query access.
How does tiered storage work in TigerData and how does it help manage large volumes of time-series data efficiently?
Why does TigerData use compression?
To help teams handle large volumes of time-series data affordably by reducing storage costs, improving query performance, and keeping infrastructure lean.
What kind of data does TigerData compress?
Historical (older) time-series data
Can compressed data still be queried normally?
Yes - it’s fully queryable with standard SQL
How is TigerData’s compression organized?
Data is compressed by column (columnar storage), not by row like regular PostgreSQL.
What are the benefits of columnar compression?
Smaller storage footprint, less disk I/O, and faster analytical queries.
Why is columnar compression good for time-series data?
Because time-series data is often append-only and rarely updated, making it perfect for column-based blocks.
What is PostgreSQL’s default method for handling large values?
TOAST (The Oversized-Attribute Storage Technique).