saveAsTable コマンドを使用して HiveContext を操作するときに sparkR データ フレームを保存する方法
df_5 <- loadDF(sqlContext, "Report02_cashier_Hourly_total_Trans_july30.parquet", "parquet") /*I loaded the parquet file as dataframe*/
sqlContext <- sparkRHive.init(sc) /*Initialized the hive context*/
sql(sqlContext, "create table Report2_cashier_hourly (location_code INT, business_date DATE, cashier STRING, hour STRING, store_no STRING, region STRING, city STRING, zone STRING, Total_trans INT)") /*created a table Report2_cashier_hourly*/
をハイブ テーブルsaveAsTable(df, tableName, source, mode, ...)
に保存するために使用する方法。df_5(data frame)
Report02_cashier_hourly