Timestream for LiveAnalytics
Explore how Amazon Timestream LiveAnalytics provides a fully managed, serverless platform to ingest, store, and query time-series data efficiently. Understand the dual storage tiers of memory and magnetic stores, retention policy design, multi-measure records, and native time-series SQL functions to optimize analytics and reduce operational complexity.
With the time-series foundations of metrics, telemetry, retention planning, rollups, late-arriving data, and ingestion and cardinality trade-offs established in the previous lesson, the next step is understanding how AWS translates those principles into a managed service. Timestream for LiveAnalytics is AWS’s serverless time-series analytics service, purpose-built for ingesting, storing, and querying time-stamped data at scale. It removes the operational burden of provisioning instances, planning capacity, or patching software. AWS manages compute, storage, and scaling automatically, so your focus shifts to data modeling and query design.
This distinction matters when comparing LiveAnalytics against instance-managed alternatives. With Amazon RDS or a self-managed InfluxDB deployment on EC2, you size instances, manage storage volumes, and handle version upgrades. Services like Amazon Redshift or Amazon OpenSearch Service can process time-series data, but they lack native time-series primitives such as interpolation, time-bucketed aggregation, and automatic tiered storage governed by retention policies. LiveAnalytics provides these capabilities as core features within a single service boundary.
The core building blocks that define LiveAnalytics are databases, tables, the memory store, the magnetic store, retention properties, multi-measure records, and built-in time-series SQL functions. Each of these components plays a specific role in the data life cycle, from ingestion through querying to eventual deletion.
Practical tip: On the exam and in real-world architecture reviews, favor Timestream for LiveAnalytics when requirements explicitly call for time-series functions, configurable retention, and seamless querying across hot and cold data within one service.
The following diagram illustrates how data flows through the LiveAnalytics architecture from ingestion to query.
With this architecture in mind, the next sections unpack how each storage tier operates and why retention policy design is integral to the data model.
Memory and magnetic store tiers
LiveAnalytics organizes data within each table into two storage tiers that serve fundamentally different access patterns while remaining transparent to the application that issues SQL queries.
How the memory store operates
The ...