This is an automated email from the ASF dual-hosted git repository.
sivabalan pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 65ffcb82c4 [DOCS] Fix typo in NonpartitionedKeyGenerator related docs
(#6841)
65ffcb82c4 is described below
commit 65ffcb82c428e2f6ba0123afde63efafacdcebf6
Author: Bhavani Sudha Saktheeswaran <[email protected]>
AuthorDate: Fri Sep 30 12:54:04 2022 -0700
[DOCS] Fix typo in NonpartitionedKeyGenerator related docs (#6841)
---
website/blog/2021-02-13-hudi-key-generators.md | 4 ++--
website/blog/2021-08-18-virtual-keys.md | 2 +-
website/docs/key_generation.md | 4 ++--
website/versioned_docs/version-0.10.0/key_generation.md | 4 ++--
website/versioned_docs/version-0.10.1/key_generation.md | 4 ++--
website/versioned_docs/version-0.11.0/key_generation.md | 4 ++--
website/versioned_docs/version-0.11.1/key_generation.md | 4 ++--
website/versioned_docs/version-0.12.0/key_generation.md | 4 ++--
website/versioned_docs/version-0.6.0/writing_data.md | 2 +-
website/versioned_docs/version-0.7.0/writing_data.md | 2 +-
website/versioned_docs/version-0.8.0/writing_data.md | 2 +-
11 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/website/blog/2021-02-13-hudi-key-generators.md
b/website/blog/2021-02-13-hudi-key-generators.md
index ff8ac74e2d..07c78562ef 100644
--- a/website/blog/2021-02-13-hudi-key-generators.md
+++ b/website/blog/2021-02-13-hudi-key-generators.md
@@ -188,8 +188,8 @@ Example config value:
```“field_3:simple,field_5:timestamp”```
RecordKey config value is either single field incase of SimpleKeyGenerator or
a comma separate field names if referring to ComplexKeyGenerator.
Eg: “col1” or “col3,col4”.
-###
[NonPartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
-If your hudi dataset is not partitioned, you could use this
“NonPartitionedKeyGenerator” which will return an empty
+###
[NonpartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
+If your hudi dataset is not partitioned, you could use this
“NonpartitionedKeyGenerator” which will return an empty
partition for all records. In other words, all records go to the same
partition (which is empty “”)
Hope this blog gave you a good understanding of different types of Key
Generators available in Apache Hudi. Thanks for your continued support for
Hudi's community.
diff --git a/website/blog/2021-08-18-virtual-keys.md
b/website/blog/2021-08-18-virtual-keys.md
index 02b7468c2e..20b090114f 100644
--- a/website/blog/2021-08-18-virtual-keys.md
+++ b/website/blog/2021-08-18-virtual-keys.md
@@ -41,7 +41,7 @@ for users. Thus, we support only simple key generators (the
default key generato
to an existing field ) for now.
#### Supported Key Generators with CopyOnWrite(COW) table:
-SimpleKeyGenerator, ComplexKeyGenerator, CustomKeyGenerator,
TimestampBasedKeyGenerator and NonPartitionedKeyGenerator.
+SimpleKeyGenerator, ComplexKeyGenerator, CustomKeyGenerator,
TimestampBasedKeyGenerator and NonpartitionedKeyGenerator.
#### Supported Key Generators with MergeOnRead(MOR) table:
SimpleKeyGenerator
diff --git a/website/docs/key_generation.md b/website/docs/key_generation.md
index 484430ca72..da51507d41 100644
--- a/website/docs/key_generation.md
+++ b/website/docs/key_generation.md
@@ -47,8 +47,8 @@ are expected to be comma separated in the config value. For
example ```"Hoodie.d
###
[GlobalDeleteKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/GlobalDeleteKeyGenerator.java)
Global index deletes do not require partition value. So this key generator
avoids using partition value for generating HoodieKey.
-###
[NonPartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
-If your hudi dataset is not partitioned, you could use this
“NonPartitionedKeyGenerator” which will return an empty
+###
[NonpartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
+If your hudi dataset is not partitioned, you could use this
“NonpartitionedKeyGenerator” which will return an empty
partition for all records. In other words, all records go to the same
partition (which is empty “”)
###
[CustomKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/CustomKeyGenerator.java)
diff --git a/website/versioned_docs/version-0.10.0/key_generation.md
b/website/versioned_docs/version-0.10.0/key_generation.md
index f20e4d77a1..dbdf1627d0 100644
--- a/website/versioned_docs/version-0.10.0/key_generation.md
+++ b/website/versioned_docs/version-0.10.0/key_generation.md
@@ -47,8 +47,8 @@ are expected to be comma separated in the config value. For
example ```"Hoodie.d
###
[GlobalDeleteKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/GlobalDeleteKeyGenerator.java)
Global index deletes do not require partition value. So this key generator
avoids using partition value for generating HoodieKey.
-###
[NonPartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
-If your hudi dataset is not partitioned, you could use this
“NonPartitionedKeyGenerator” which will return an empty
+###
[NonpartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
+If your hudi dataset is not partitioned, you could use this
“NonpartitionedKeyGenerator” which will return an empty
partition for all records. In other words, all records go to the same
partition (which is empty “”)
###
[CustomKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/CustomKeyGenerator.java)
diff --git a/website/versioned_docs/version-0.10.1/key_generation.md
b/website/versioned_docs/version-0.10.1/key_generation.md
index f20e4d77a1..dbdf1627d0 100644
--- a/website/versioned_docs/version-0.10.1/key_generation.md
+++ b/website/versioned_docs/version-0.10.1/key_generation.md
@@ -47,8 +47,8 @@ are expected to be comma separated in the config value. For
example ```"Hoodie.d
###
[GlobalDeleteKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/GlobalDeleteKeyGenerator.java)
Global index deletes do not require partition value. So this key generator
avoids using partition value for generating HoodieKey.
-###
[NonPartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
-If your hudi dataset is not partitioned, you could use this
“NonPartitionedKeyGenerator” which will return an empty
+###
[NonpartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
+If your hudi dataset is not partitioned, you could use this
“NonpartitionedKeyGenerator” which will return an empty
partition for all records. In other words, all records go to the same
partition (which is empty “”)
###
[CustomKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/CustomKeyGenerator.java)
diff --git a/website/versioned_docs/version-0.11.0/key_generation.md
b/website/versioned_docs/version-0.11.0/key_generation.md
index 484430ca72..da51507d41 100644
--- a/website/versioned_docs/version-0.11.0/key_generation.md
+++ b/website/versioned_docs/version-0.11.0/key_generation.md
@@ -47,8 +47,8 @@ are expected to be comma separated in the config value. For
example ```"Hoodie.d
###
[GlobalDeleteKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/GlobalDeleteKeyGenerator.java)
Global index deletes do not require partition value. So this key generator
avoids using partition value for generating HoodieKey.
-###
[NonPartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
-If your hudi dataset is not partitioned, you could use this
“NonPartitionedKeyGenerator” which will return an empty
+###
[NonpartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
+If your hudi dataset is not partitioned, you could use this
“NonpartitionedKeyGenerator” which will return an empty
partition for all records. In other words, all records go to the same
partition (which is empty “”)
###
[CustomKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/CustomKeyGenerator.java)
diff --git a/website/versioned_docs/version-0.11.1/key_generation.md
b/website/versioned_docs/version-0.11.1/key_generation.md
index 484430ca72..da51507d41 100644
--- a/website/versioned_docs/version-0.11.1/key_generation.md
+++ b/website/versioned_docs/version-0.11.1/key_generation.md
@@ -47,8 +47,8 @@ are expected to be comma separated in the config value. For
example ```"Hoodie.d
###
[GlobalDeleteKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/GlobalDeleteKeyGenerator.java)
Global index deletes do not require partition value. So this key generator
avoids using partition value for generating HoodieKey.
-###
[NonPartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
-If your hudi dataset is not partitioned, you could use this
“NonPartitionedKeyGenerator” which will return an empty
+###
[NonpartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
+If your hudi dataset is not partitioned, you could use this
“NonpartitionedKeyGenerator” which will return an empty
partition for all records. In other words, all records go to the same
partition (which is empty “”)
###
[CustomKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/CustomKeyGenerator.java)
diff --git a/website/versioned_docs/version-0.12.0/key_generation.md
b/website/versioned_docs/version-0.12.0/key_generation.md
index 484430ca72..da51507d41 100644
--- a/website/versioned_docs/version-0.12.0/key_generation.md
+++ b/website/versioned_docs/version-0.12.0/key_generation.md
@@ -47,8 +47,8 @@ are expected to be comma separated in the config value. For
example ```"Hoodie.d
###
[GlobalDeleteKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/GlobalDeleteKeyGenerator.java)
Global index deletes do not require partition value. So this key generator
avoids using partition value for generating HoodieKey.
-###
[NonPartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
-If your hudi dataset is not partitioned, you could use this
“NonPartitionedKeyGenerator” which will return an empty
+###
[NonpartitionedKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/NonpartitionedKeyGenerator.java)
+If your hudi dataset is not partitioned, you could use this
“NonpartitionedKeyGenerator” which will return an empty
partition for all records. In other words, all records go to the same
partition (which is empty “”)
###
[CustomKeyGenerator](https://github.com/apache/hudi/blob/master/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/keygen/CustomKeyGenerator.java)
diff --git a/website/versioned_docs/version-0.6.0/writing_data.md
b/website/versioned_docs/version-0.6.0/writing_data.md
index 9c7adb6714..8e503738b5 100644
--- a/website/versioned_docs/version-0.6.0/writing_data.md
+++ b/website/versioned_docs/version-0.6.0/writing_data.md
@@ -322,7 +322,7 @@ For those on hudi versions < 0.6.0, you can use the
following key generator clas
- Simple record key and custom timestamp based partition path (with optional
hive style partitioning) - `TimestampBasedKeyGenerator.java`
- Composite record keys (combination of multiple fields) and composite
partition paths - `ComplexKeyGenerator.java`
- Composite record keys and timestamp based partition paths (composite also
supported) - You might need to move to 0.6.0 and use `CustomKeyGenerator.java`
class
- - Non partitioned table - `NonPartitionedKeyGenerator.java`. Non-partitioned
tables can currently only have a single key column,
[HUDI-1053](https://issues.apache.org/jira/browse/HUDI-1053)
+ - Non partitioned table - `NonpartitionedKeyGenerator.java`. Non-partitioned
tables can currently only have a single key column,
[HUDI-1053](https://issues.apache.org/jira/browse/HUDI-1053)
## Syncing to Hive
diff --git a/website/versioned_docs/version-0.7.0/writing_data.md
b/website/versioned_docs/version-0.7.0/writing_data.md
index 5bf834be18..7395b01ea2 100644
--- a/website/versioned_docs/version-0.7.0/writing_data.md
+++ b/website/versioned_docs/version-0.7.0/writing_data.md
@@ -324,7 +324,7 @@ For those on hudi versions < 0.6.0, you can use the
following key generator clas
- Simple record key and custom timestamp based partition path (with optional
hive style partitioning) - `TimestampBasedKeyGenerator.java`
- Composite record keys (combination of multiple fields) and composite
partition paths - `ComplexKeyGenerator.java`
- Composite record keys and timestamp based partition paths (composite also
supported) - You might need to move to 0.6.0 and use `CustomKeyGenerator.java`
class
- - Non partitioned table - `NonPartitionedKeyGenerator.java`. Non-partitioned
tables can currently only have a single key column,
[HUDI-1053](https://issues.apache.org/jira/browse/HUDI-1053)
+ - Non partitioned table - `NonpartitionedKeyGenerator.java`. Non-partitioned
tables can currently only have a single key column,
[HUDI-1053](https://issues.apache.org/jira/browse/HUDI-1053)
## Syncing to Hive
diff --git a/website/versioned_docs/version-0.8.0/writing_data.md
b/website/versioned_docs/version-0.8.0/writing_data.md
index 1baf23c6c4..7fd79f62ed 100644
--- a/website/versioned_docs/version-0.8.0/writing_data.md
+++ b/website/versioned_docs/version-0.8.0/writing_data.md
@@ -358,7 +358,7 @@ For those on hudi versions < 0.6.0, you can use the
following key generator clas
- Simple record key and custom timestamp based partition path (with optional
hive style partitioning) - `TimestampBasedKeyGenerator.java`
- Composite record keys (combination of multiple fields) and composite
partition paths - `ComplexKeyGenerator.java`
- Composite record keys and timestamp based partition paths (composite also
supported) - You might need to move to 0.6.0 and use `CustomKeyGenerator.java`
class
- - Non partitioned table - `NonPartitionedKeyGenerator.java`. Non-partitioned
tables can currently only have a single key column,
[HUDI-1053](https://issues.apache.org/jira/browse/HUDI-1053)
+ - Non partitioned table - `NonpartitionedKeyGenerator.java`. Non-partitioned
tables can currently only have a single key column,
[HUDI-1053](https://issues.apache.org/jira/browse/HUDI-1053)
## Syncing to Hive