This is an automated email from the ASF dual-hosted git repository.
fcsaky pushed a commit to branch v2.0
in repository https://gitbox.apache.org/repos/asf/flink-connector-kudu.git
The following commit(s) were added to refs/heads/v2.0 by this push:
new 27c75fb [hotfix] Fix ref links in docs, and adapt doc page weights
27c75fb is described below
commit 27c75fb23e1179fc742afecee8b14e43a162e611
Author: Ferenc Csaky <[email protected]>
AuthorDate: Sat Apr 12 07:36:11 2025 +0200
[hotfix] Fix ref links in docs, and adapt doc page weights
---
docs/content/docs/connectors/datastream/kudu.md | 8 +++-----
docs/content/docs/connectors/table/kudu.md | 8 +++-----
2 files changed, 6 insertions(+), 10 deletions(-)
diff --git a/docs/content/docs/connectors/datastream/kudu.md
b/docs/content/docs/connectors/datastream/kudu.md
index e479340..b493a33 100644
--- a/docs/content/docs/connectors/datastream/kudu.md
+++ b/docs/content/docs/connectors/datastream/kudu.md
@@ -1,9 +1,7 @@
---
title: Kudu
-weight: 4
+weight: 6
type: docs
-aliases:
-- /dev/connectors/kudu.html
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
@@ -98,7 +96,7 @@ env.fromSource(source, WatermarkStrategy.noWatermarks(),
"Kudu Source");
```
{{< hint info >}}
-It is also possible to create a non-existing Kudu table. To learn more about
that, see the [Create Kudu table]({{< ref "docs/dev/connectors/datastream/kudu"
>}}#create-kudu-table) section.
+It is also possible to create a non-existing Kudu table. To learn more about
that, see the [Create Kudu table]({{< ref "docs/connectors/datastream/kudu"
>}}#create-kudu-table) section.
{{< /hint >}}
#### Boundedness
@@ -166,7 +164,7 @@ ds.sinkTo(sink);
```
{{< hint info >}}
-It is also possible to create a non-existing Kudu table. To learn more about
that, see the [Create Kudu table]({{< ref "docs/dev/connectors/datastream/kudu"
>}}#create-kudu-table) section.
+It is also possible to create a non-existing Kudu table. To learn more about
that, see the [Create Kudu table]({{< ref "docs/connectors/datastream/kudu"
>}}#create-kudu-table) section.
{{< /hint >}}
### Kudu Operation Mapping
diff --git a/docs/content/docs/connectors/table/kudu.md
b/docs/content/docs/connectors/table/kudu.md
index 309c987..b48950b 100644
--- a/docs/content/docs/connectors/table/kudu.md
+++ b/docs/content/docs/connectors/table/kudu.md
@@ -1,9 +1,7 @@
---
title: Kudu
-weight: 4
+weight: 6
type: docs
-aliases:
-- /dev/table/connectors/kudu.html
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
@@ -63,7 +61,7 @@ CREATE TABLE MyKuduTable (
To also *create* a table in Kudu as well, the `hash-columns` options must be
specified as a comma-delimited list.
Other properties, such as range partitioning cannot be configured here.
-For more flexibility, please use `KuduCatalog#createTable` as described in
[this]({{< ref "docs/dev/connectors/table/kudu"
>}}#creating-a-kudu-table-directly-with-kuducatalog) section, or create the
table directly in Kudu.
+For more flexibility, please use `KuduCatalog#createTable` as described in
[this]({{< ref "docs/connectors/table/kudu"
>}}#creating-a-kudu-table-directly-with-kuducatalog) section, or create the
table directly in Kudu.
The `NOT NULL` constraint can be added to any of the column definitions.
@@ -75,7 +73,7 @@ SQL and Table API
The Kudu connector is fully integrated with the Flink Table and SQL APIs.
Once we configure the Kudu catalog, we can start querying or inserting into
existing Kudu tables using the Flink SQL or Table API.
-For more information about the possible queries, please check the relevant
parts of the documentation [here]({{< ref "/docs/dev/table/sql/overview/" >}}).
+For more information about the possible queries, please check the relevant
parts of the documentation [here]({{< ref "docs/dev/table/sql/overview" >}}).
Kudu Catalog
------------