bhasudha commented on code in PR #9622: URL: https://github.com/apache/hudi/pull/9622#discussion_r1324487694
########## website/docs/quick-start-guide.md: ########## @@ -326,37 +345,24 @@ partitioned by (dt, hh) location '/tmp/hudi/hudi_cow_pt_tbl'; ``` -**Create Table for an existing Hudi Table** - -We can create a table on an existing hudi table(created with spark-shell or Hudi Streamer). This is useful to -read/write to/from a pre-existing hudi table. - -```sql -create table hudi_existing_tbl using hudi -location '/tmp/hudi/hudi_existing_table'; -``` - -:::tip -You don't need to specify schema and any properties except the partitioned columns if existed. Hudi can automatically recognize the schema and configurations. -::: - **CTAS** Hudi supports CTAS (Create Table As Select) on Spark SQL. <br/> -Note: For better performance to load data to hudi table, CTAS uses the **bulk insert** as the write operation. +Note: CTAS uses the **bulk insert** as the write operation for better writer performance. Review Comment: :::note -- 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]
