SparkSQL error Table Not Found

前端 未结 5 1931
夕颜
夕颜 2020-12-10 13:51

I converted an RDD[myClass] to dataframe and then register it as an SQL table

my_rdd.toDF().registerTempTable(\"my_rdd\")
5条回答
  •  情书的邮戳
    2020-12-10 14:15

    I faced with a similar problem. I was loading a table which was not present in the warehouse folder whereas Hive console was showing me the table name. You can check the detailed description of the table you are loading using describe formatted table_name. You don't need to copy any file to spark/conf folder. It is already integrated.

提交回复
热议问题