SparkStreaming学习札记5-2020-2-17--SparkStreaming实时流处理项目实战

查询两个数据表中的相关联的数据整合SQL语句

select b.course_name course_name, a.click_count click_count

from(

  (select course_id,click_count from course_click_count where day='20200216') a

  join

  (select course_id,course_name from course_info) b

  on a.course_id = b.course_id

)

登录redis服务器命令

redis-cli -h xxx.xxx.xxx.xxx

发布了22 篇原创文章 · 获赞 0 · 访问量 447

猜你喜欢

转载自blog.csdn.net/qq_36956082/article/details/104355661