Timescaledb

TimescaleDB中超過1億行的分佈式超表如何快速返回行數?

  • June 17, 2021

在 ‘vanilla’ PostgreSQL 12.7數據庫中,我通常執行以下查詢來了解具有 100+ 百萬行的表中的估計行數:

----------------------------------------------------------
-- Return the estimated number of rows for the given table
----------------------------------------------------------
SELECT reltuples::bigint AS estimate_number_of_rows
FROM   pg_class
WHERE  oid = to_regclass('name_of_some_big_table');

這種類型的查詢不適用於我們的多節點TimescaleDB安裝上的分佈式超表

我檢查了TimescaleDB API 參考,但找不到我要找的東西。

有沒有這樣一個簡單的查詢來快速返回分佈式超表中的估計行數?

TimescaleDB 提供approximate_row_count功能,在此處的文件中進行了描述。準確度取決於上次執行 ANALYZE 或 VACUUM 的時間。

對於您的表,查詢將是:

SELECT approximate_row_count('name_of_some_big_table');

引用自:https://dba.stackexchange.com/questions/294420