For example, h2o.save_to_hive(data_frame, "jdbc:hive2://host:10000/database", "table_name") h2o.save_to_hive(data_frame, "jdbc:hive2://host:10000/", "database.table_name", format = "parquet")
h2o.save_to_hive(
data,
jdbc_url,
table_name,
format = "csv",
table_path = NULL,
tmp_path = NULL
)
A H2O Frame object to be saved.
Hive JDBC connection URL.
Table name into which to store the data. The table must not exist as it will be created
Storage format of created Hive table. (default csv, can be csv or parquet)
If specified, the table will be created as an external table and this is where the data
Path where to store temporary data.