This is an automated email from the ASF dual-hosted git repository.
vinoyang 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 38e132e [HUDI-1426] Updated classname in doc as per code (#3011)
38e132e is described below
commit 38e132e3a1af5263591dfd825756115e2ced1940
Author: Vinay Patil <[email protected]>
AuthorDate: Mon May 31 17:13:21 2021 +0530
[HUDI-1426] Updated classname in doc as per code (#3011)
Co-authored-by: veenaypatil <[email protected]>
---
content/docs/writing_data.html | 2 +-
docs/_docs/2_2_writing_data.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/docs/writing_data.html b/content/docs/writing_data.html
index d2af58a..719cc0d 100644
--- a/content/docs/writing_data.html
+++ b/content/docs/writing_data.html
@@ -806,7 +806,7 @@ The value for <code
class="highlighter-rouge">hoodie.datasource.write.partitionp
<li>Simple record key and custom timestamp based partition path (with
optional hive style partitioning) - <code
class="highlighter-rouge">TimestampBasedKeyGenerator.java</code></li>
<li>Composite record keys (combination of multiple fields) and composite
partition paths - <code
class="highlighter-rouge">ComplexKeyGenerator.java</code></li>
<li>Composite record keys and timestamp based partition paths (composite
also supported) - You might need to move to 0.6.0 and use <code
class="highlighter-rouge">CustomKeyGenerator.java</code> class</li>
- <li>Non partitioned table - <code
class="highlighter-rouge">NonPartitionedKeyGenerator.java</code>.
Non-partitioned tables can currently only have a single key column, <a
href="https://issues.apache.org/jira/browse/HUDI-1053">HUDI-1053</a></li>
+ <li>Non partitioned table - <code
class="highlighter-rouge">NonpartitionedKeyGenerator.java</code>.
Non-partitioned tables can currently only have a single key column, <a
href="https://issues.apache.org/jira/browse/HUDI-1053">HUDI-1053</a></li>
</ul>
<h2 id="syncing-to-hive">Syncing to Hive</h2>
diff --git a/docs/_docs/2_2_writing_data.md b/docs/_docs/2_2_writing_data.md
index affb731..86bd14d 100644
--- a/docs/_docs/2_2_writing_data.md
+++ b/docs/_docs/2_2_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