Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion use-timescale/data-tiering/querying-tiered-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,13 @@ All future queries within a session can be enabled to use the object storage tie

All future queries in that session are configured to read from tiered data and locally stored data.

</Procedure>
1. List the hypertables that have tiering enabled:

```sql
select * from timescaledb_osm.tiered_hypertables;
```

</Procedure>

## Enable querying tiered data in all future sessions

Expand All @@ -75,8 +80,15 @@ You can also enable queries to read from tiered data always by following these s

In all future created sessions, `timescaledb.enable_tiered_reads` initializes with `enabled`.

1. List the hypertables that have tiering enabled:

```sql
select * from timescaledb_osm.tiered_hypertables;
```

</Procedure>


## Query data in the object storage tier

This section illustrates how querying tiered storage works.
Expand Down