摘要:
分组求最新视图 目前业界主流的求最新视图的方法有两种: 求最大值自连接 --假设现在有表T:user_id,update_time --分组求最大值自连接 select user_id, max(update_time) as max_time from t group by user_id joi 阅读全文
摘要:
api差异参考官网地址:https://spark.apache.org/docs/2.1.1/sql-programming-guide.html#upgrading-from-spark-sql-16-to-20 1.SparkSession is now the new entry point 阅读全文
摘要:
import org.junit.Test; import java.util.*; import java.util.stream.Collectors; /** * Created by shaozhiqi on 2019/9/26 */ public class testLam { @Test public void testCreateThread() { Thread thread1 = 阅读全文