摘要: 这篇文章https://blog.csdn.net/yljphp/article/details/88851092,举例子介绍了Flink如何通过waterMark+window机制来如何处理乱序时间。 自我感觉看了之后懂了百分之七八十。 阅读全文
posted @ 2020-03-03 10:19 再见傅里叶 阅读(540) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_37477226/article/details/88424830 阅读全文
posted @ 2020-02-28 22:41 再见傅里叶 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 是一款开源的分布式数据库存储解决方案,其主要关注在数据仓库和商业智能方面。可以在虚拟化x86服务器上运行无分享(shared-nothing)的大规模并行处理(MPP)架构。 分布式存储和分布式计算理论刚刚被提出来,Google的两篇著名论文发表后引起业界的关注,一篇是关于GFS分布式文件系统,另外 阅读全文
posted @ 2020-02-28 22:39 再见傅里叶 阅读(141) 评论(0) 推荐(0) 编辑
摘要: --查看指定时间的数据快照select * from tablename AS OF TIMESTAMP to_timestamp('2019-07-11 10:00:00','yyyy-mm-dd hh24:mi:ss'); --闪回数据--1、启动表的row movement特性ALTER TA 阅读全文
posted @ 2020-02-28 22:36 再见傅里叶 阅读(439) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-02-27 11:04 再见傅里叶 阅读(0) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/raymoc/p/5323824.html 大表对小表应该使用MapJoin ,set hive.auto.convert.join=true;让hive自动识别,把join变成合适的Map Join 大表对大表 set hive.auto.conve 阅读全文
posted @ 2020-02-23 18:47 再见傅里叶 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 1、什么是ES,为什么要用ES? Elasticsearch是一个基于Lucene的搜索引擎。它提供了具有HTTP Web界面和无架构JSON文档的分布式,多租户能力的全文搜索引擎。Elasticsearch是用Java开发的,根据Apache许可条款作为开源发布。 用ES做一个全文索引 2、Ela 阅读全文
posted @ 2020-02-22 21:10 再见傅里叶 阅读(2867) 评论(0) 推荐(0) 编辑
摘要: 没有建mapping(模板中dynamic为ifalse),字段可以fetchSource(new SearchSourceBuilder().fetchSource(include field,exclude field)); 如果你不想该字段被搜索,可以在mapping里面设置index为fal 阅读全文
posted @ 2020-02-22 19:57 再见傅里叶 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 常见数据结构 常用API:Jedis/Redisson 阅读全文
posted @ 2020-01-17 09:28 再见傅里叶 阅读(94) 评论(0) 推荐(0) 编辑
摘要: bootstrap.yml文件如下: spring: application: name: 微服务应用名 cloud: config: label: ${config.label:dev} profile: ${config.profile:dev} discovery: enabled: true 阅读全文
posted @ 2019-12-25 19:03 再见傅里叶 阅读(552) 评论(0) 推荐(0) 编辑