摘要:
1.目前我所使用的kylin版本为2.6.2,有时在完成一次构建后会出现fail to locate kylin.properties的异常,如图所示 经排查,定位到kylin源码中的 org.apache.kylin.engine.mr.common.AbstractHadoopJob中的load 阅读全文
摘要:
MetaException(message:java.lang.UnsupportedOperationException: Storage schema reading not supported) 2021/12/18 下午11:49:12 2021/12/18 下午11:49:12org.ap 阅读全文
摘要:
1、将txt文本文件放置hdfs目录下 2、登录hive并进入到指定数据库 3、创建表 create external table if not exists fun_user_external ( tid INT, userid STRING, pwd STRING, create_time BI 阅读全文
摘要:
mysql中You can't specify target table for update in FROM clause错误的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中)。 例如下面这个sql: 复制代码代码如下: delete from tbl wher 阅读全文
摘要:
第一种在Dao接口中自定义SQL查询,拼接xml字符串 UserDaoMapper.java @Select("<script>" +"select * from user where id in" + "<foreach item='id' index='index' collection='id 阅读全文
摘要:
Java 8 更新的部分内容中,有一部分代替了以往比较难用的 java.util.Date 类,并且创建了一套新的时间类型,该类型为: java.time.LocalDateTime. LocalDateTime 提供了许多方法供我们使用, 基本类型 java.time.LocalDate java 阅读全文
摘要:
今天在整合redis和spring boot的时候,遇到了一个错误,记录一下。 报错如下: Could not read JSON: Cannot construct instance of `java.time.LocalDateTime` (no Creators, like default c 阅读全文
摘要:
redis中没有Long类型,存储进去后取出来会是Interger类型。需要自行转化,不可直接强转。否则将CCE。 本人在处理springboot的redisTemplate封装时发生了这个异常。解决方案如下 private <T> T getObject(String key, Class<T> 阅读全文
摘要:
https://www.cnblogs.com/merryyou/p/9100260.html 前言 在使用Spring Security Oauth2登录和鉴权失败时,默认返回的异常信息如下 { "error": "unauthorized", "error_description": "Full 阅读全文
摘要:
Linux如何查找大文件或目录总结 2015-04-04 11:34 潇湘隐者 阅读(190830) 评论(7) 编辑 收藏 举报 在Windows系统中,我们可以使用TreeSize工具查找一些大文件或文件夹,非常的方便高效,在Linux系统中,如何去搜索一些比较大的文件呢?下面我整理了一下在Li 阅读全文