nsivabalan commented on code in PR #7078: URL: https://github.com/apache/hudi/pull/7078#discussion_r1009641965
########## website/docs/faq.md: ########## @@ -633,10 +633,20 @@ Cloudera CDP stack, causing the conflict. To get around the RuntimeException, y within the Cloudera manager. ### How can I find the average record size in a commit? + The `commit showpartitons` command in [HUDI CLI](https://hudi.apache.org/docs/cli) will show both "bytes written" and "records inserted." Divide the bytes written by records inserted to find the average size. Note that this answer assumes metadata overhead is negligible. For a small dataset (such as 5 columns, 100 records) this will not be the case. +### How can I resolve the IllegalArgumentException saying `Partitions must be in the same table` when attempting to sync to a metastore? + +This will occur when capital letters are used in the table name. Metastores such as Hive automatically convert table names +to lowercase. While we allow capitalization on Hudi tables, if you would like to use a metastore you may be required to +use all lowercase letters. Review Comment: can you add reference to an issue which has full stacktrace. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
