上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: public class OrderBean implements WritableComparable<OrderBean> { private Integer order_id; //整数用 writeInt()和readInt() private String pdt; //文本类型 用 wr 阅读全文
posted @ 2021-04-14 14:05 菜霸 阅读(39) 评论(0) 推荐(0)
摘要: 简单一句话总结就是:ReduceContextImpl类的RawKeyValueIterator input迭代器对象里面存储中着key-value对的元素, 以及一个只存储value的迭代器,然后每调一次我们实现的reduce方法,就是传入ValueIterable迭代器对象和当前的key。但是我 阅读全文
posted @ 2021-04-14 14:00 菜霸 阅读(127) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-04-13 10:30 菜霸 阅读(44) 评论(0) 推荐(0)
摘要: 1. 概述 Apache Ranger是大数据领域的一个集中式安全管理框架,目的是通过制定策略(policies)实现对Hadoop组件的集中式安全管理。用户可以通过Ranger实现对集群中数据的安全访问。 2. Ranger内部组件 Ranger由三个模块组成:Ranger内部组件、依赖组件、扩展 阅读全文
posted @ 2021-01-14 11:46 菜霸 阅读(2670) 评论(0) 推荐(0)
摘要: <mirrors> <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/publ 阅读全文
posted @ 2021-01-14 11:18 菜霸 阅读(383) 评论(0) 推荐(0)
摘要: 默认有一个application.properties配置文件, 然后在resource目录下新建3个配置文件比如 application-dev.properties application-test.properties application-prod.properties 比如我们要使用de 阅读全文
posted @ 2020-12-21 14:35 菜霸 阅读(774) 评论(0) 推荐(0)
摘要: 转载:https://blog.csdn.net/Anumbrella/article/details/80821486 一、初识CAS 首先我们来说一下CAS,CAS全称为Central Authentication Service即中央认证服务,是一个企业多语言单点登录的解决方案,并努力去成为一 阅读全文
posted @ 2020-11-23 15:46 菜霸 阅读(1043) 评论(0) 推荐(0)
摘要: Spring 3.2提供了强大的新注解 @ControllerAdvice,主要是用来Controller的一些公共的需求的低侵入性增强提供辅助,作用于@RequestMapping标注的方法上。 和此注解配合使用的其他注解有: @ExceptionHandler 自定义的错误处理器 @ModelA 阅读全文
posted @ 2020-04-23 15:10 菜霸 阅读(296) 评论(0) 推荐(0)
摘要: GET jyb_report_index_preprod/_search { "query": { "match": { "report_id":59 } } } 解释:上面 jyb_report_index_preprod 是欲查索引的名称, 想要查询的条件在match里面写,我打算查 repor 阅读全文
posted @ 2020-03-19 11:45 菜霸 阅读(5423) 评论(0) 推荐(0)
摘要: 在最近的工作中,通过JProfiler解决了一个内存泄漏的问题,现将检测的步骤和一些分析记录下来,已备今后遇到相似问题时可以作为参考。 运行环境: Tomcat6,jdk6,JProfiler8 内存泄漏的现象: 1. 在服务器中执行某些批量操作的时候,发现内存只升不降;就算gc后,内存也不能被完全 阅读全文
posted @ 2020-01-07 19:36 菜霸 阅读(3405) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 ··· 9 下一页