From e7d3a94de19cbc2986825e030c73c4803fb7e5a2 Mon Sep 17 00:00:00 2001 From: hengm3467 <100685635+hengm3467@users.noreply.github.com> Date: Wed, 25 Dec 2024 17:09:45 +0800 Subject: [PATCH] change serve to query --- mint.json | 16 ++++++++-------- {serve => query}/overview.mdx | 7 ++++--- .../query-from-visualization-tools.mdx | 0 {serve => query}/query-with-select.mdx | 0 {serve => query}/risingwave-as-postgres-fdw.mdx | 0 {serve => query}/subscription.mdx | 0 6 files changed, 12 insertions(+), 11 deletions(-) rename {serve => query}/overview.mdx (96%) rename {serve => query}/query-from-visualization-tools.mdx (100%) rename {serve => query}/query-with-select.mdx (100%) rename {serve => query}/risingwave-as-postgres-fdw.mdx (100%) rename {serve => query}/subscription.mdx (100%) diff --git a/mint.json b/mint.json index c2743099..bec1e1ad 100644 --- a/mint.json +++ b/mint.json @@ -375,8 +375,8 @@ {"source": "/docs/current/faq-using-risingwave", "destination": "/faq/faq-using-risingwave"}, {"source": "/release-notes", "destination": "/changelog/release-notes"}, {"source": "/product-lifecycle", "destination": "/changelog/product-lifecycle"}, - {"source": "/delivery/risingwave-as-postgres-fdw", "destination": "/serve/risingwave-as-postgres-fdw"}, - {"source": "/delivery/subscription", "destination": "/serve/subscription"} + {"source": "/delivery/risingwave-as-postgres-fdw", "destination": "/query/risingwave-as-postgres-fdw"}, + {"source": "/delivery/subscription", "destination": "/query/subscription"} ], "navigation": [ { @@ -446,13 +446,13 @@ ] }, { - "group": "Serve results", + "group": "Query data", "pages": [ - "serve/overview", - "serve/query-with-select", - "serve/query-from-visualization-tools", - "serve/risingwave-as-postgres-fdw", - "serve/subscription" + "query/overview", + "query/query-with-select", + "query/query-from-visualization-tools", + "query/risingwave-as-postgres-fdw", + "query/subscription" ] }, diff --git a/serve/overview.mdx b/query/overview.mdx similarity index 96% rename from serve/overview.mdx rename to query/overview.mdx index ce500449..8cd42393 100644 --- a/serve/overview.mdx +++ b/query/overview.mdx @@ -1,6 +1,7 @@ --- -title: "Serve results: access and use your processed data" +title: "Query data in RisingWave" description: "RisingWave allows you to access and use insights from your streaming data immediately. It also functions like any other database, allowing you to query batch or raw data that you've inserted." +sidebarTitle: Overview --- This section explains how to query and interact with data in RisingWave. @@ -34,7 +35,7 @@ Connect to RisingWave with psql or any other PostgreSQL-compatible client to e RisingWave seamlessly integrates with existing PostgreSQL ecosystems through its Foreign Data Wrapper (FDW) functionality. Query data in RisingWave's tables and materialized views as if it were part of your PostgreSQL database. This allows you to leverage existing PostgreSQL tools and workflows. -For details, see [RisingWave as Postgres FDW](/serve/risingwave-as-postgres-fdw). +For details, see [RisingWave as Postgres FDW](/query/risingwave-as-postgres-fdw). **Key features**: @@ -49,7 +50,7 @@ For details, see [RisingWave as Postgres FDW](/serve/risingwave-as-postgres-fdw) RisingWave's subscription feature allows you to receive a continuous stream of updates from a materialized view directly, without needing an external message queue. This includes both existing data in the materialized view when the subscription is created and subsequent changes. You can choose to retrieve the full dataset or only incremental changes from a specific point using a subscription cursor. -For details, see [Subscription](/serve/subscription). +For details, see [Subscription](/query/subscription). **Key features**: diff --git a/serve/query-from-visualization-tools.mdx b/query/query-from-visualization-tools.mdx similarity index 100% rename from serve/query-from-visualization-tools.mdx rename to query/query-from-visualization-tools.mdx diff --git a/serve/query-with-select.mdx b/query/query-with-select.mdx similarity index 100% rename from serve/query-with-select.mdx rename to query/query-with-select.mdx diff --git a/serve/risingwave-as-postgres-fdw.mdx b/query/risingwave-as-postgres-fdw.mdx similarity index 100% rename from serve/risingwave-as-postgres-fdw.mdx rename to query/risingwave-as-postgres-fdw.mdx diff --git a/serve/subscription.mdx b/query/subscription.mdx similarity index 100% rename from serve/subscription.mdx rename to query/subscription.mdx