From 800b3e6a6e77d09adbc620cb6c330f46c39644a4 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Wed, 15 May 2024 20:31:41 +0800 Subject: [PATCH] correct path Signed-off-by: Ruihang Xia --- .../nightly/en/user-guide/continuous-aggregation/manage-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md b/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md index ffe7f4305..fe33b51ae 100644 --- a/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md +++ b/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md @@ -40,7 +40,7 @@ AS SELECT count(item) from my_source_table GROUP BY tumble(time_index, INTERVAL '5 minutes'); ``` -The created flow will compute `count(item)` for every 5 minutes and store the result in `my_sink_table`. All data comes within 1 hour will be used in the flow. For the `tumble()` function, refer to [define time window](./define-time-window.md) part. +The created flow will compute `count(item)` for every 5 minutes and store the result in `my_sink_table`. All data comes within 1 hour will be used in the flow. For the `tumble()` function, refer to [define time window](/define-time-window.md) part. # Delete flow