Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 3. When using HoodieDeltaStreamer tool to ingest, you can set the configs in properties file and pass the file as the cmdline argument "--props"

How do I pass hudi configurations to my beeline Hive queries?

If Hudi's input format is not picked the returned results may be incorrect. To ensure correct inputformat is picked, please use `org.apache.hadoop.hive.ql.io.HiveInputFormat` or `org.apache.hudi.hadoop.hive.HoodieCombineHiveInputFormat` for `hive.input.format` config. This can be set like shown below:

Code Block
languagescala
set hive.input.format=org.apache.hadoop.hive.ql.io.HiveInputFormat

 or

Code Block
languagescala
set hive.input.format=org.apache.hudi.hadoop.hive.HoodieCombineHiveInputFormat

Can I register my Hudi dataset with Apache Hive metastore

...