我编写此代码是为了获取指定表中count的整数值:
sc = SparkContext("local", "spar")
hive_context = HiveContext(sc)
hive_context.sql("use zs_trainings_trainings_db")
df = hive_context.sql("select count(*) from ldg_sales")
我编写此代码是为了获取指定表中count的整数值:
sc = SparkContext("local", "spar")
hive_context = HiveContext(sc)
hive_context.sql("use zs_trainings_trainings_db")
df = hive_context.sql("select count(*) from ldg_sales")
2条答案
按热度按时间92dk7w1h1#
将dataframe转换为rdd,这样就可以对其运行map任务,只提取行值,如-
ss2ws0br2#
或者:
或者