上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 48 下一页
摘要: hadoop 遇到java.net.ConnectException: to 0.0.0.0:10020 failed on connection 这个问题一般是在hadoop2.x版本里会出现,Hadoop的datanode需要访问namenode的jobhistory server,如果没有修改 阅读全文
posted @ 2017-05-20 16:59 Alamps 阅读(3196) 评论(0) 推荐(0) 编辑
摘要: 最终的 /etc/profile :#在文件最后添加 # /etc/profile# System wide environment and startup programs, for login setup# Functions and aliases go in /etc/bashrc# It's NOT a good idea to change this fi... 阅读全文
posted @ 2017-05-16 19:20 Alamps 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 【下面列出每个步骤最有用的一些R包】 1.数据导入 以下R包主要用于数据导入和保存数据: feather:一种快速,轻量级的文件格式;在R和python上都可使用 readr:实现表格数据的快速导入 readxl:读取Microsoft Excel电子表格数据 openxlsx:读取Microsoft Excel电子表格数据 googlesheets:读取google电子表格数据 haven:... 阅读全文
posted @ 2017-05-12 16:03 Alamps 阅读(780) 评论(1) 推荐(0) 编辑
摘要: > install.packages("RMySQL") also installing the dependency ‘DBI’ trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/DBI_0.6-1.zip' Content type 'application/zip' length 744728 bytes (727 ... 阅读全文
posted @ 2017-05-12 15:17 Alamps 阅读(432) 评论(0) 推荐(0) 编辑
摘要: Spring的quartz定时器同一时刻重复执行二次的问题解决 最近用Spring的quartz定时器的时候,发现到时间后,任务总是重复执行两次,在tomcat或jboss下都如此。 打印出他们的hashcode,发现是不一样的,也就是说,在web容器启动的时候,重复启了两个quartz线程。 研究下来发现quartz确实会加载两次: 第一次:web容器启动的时候,读取applicationCo... 阅读全文
posted @ 2017-05-09 16:21 Alamps 阅读(11155) 评论(2) 推荐(1) 编辑
摘要: #1、创建evevt要调用的存储过程update_current_value_procedure delimiter // drop procedure if exists update_current_value_procedure// create procedure update_current_value_procedure() begin update xw_sequence... 阅读全文
posted @ 2017-05-08 19:49 Alamps 阅读(1014) 评论(3) 推荐(0) 编辑
摘要: SELECT * FROM tb_common_biz PARTITION (p201707); 如果可以通过代码确定使用的PARTITION,可以这样查: SELECT * FROM B PARTITION(p1) 数据插入完成后,要验证是否对应id的数据保存在了对应的分区,可以使用查询分区的命令 阅读全文
posted @ 2017-05-03 17:19 Alamps 阅读(700) 评论(0) 推荐(0) 编辑
摘要: 参考 http://blog.csdn.net/tjcyjd/article/details/11194489 第18章:分区 目录 18.1. MySQL中的分区概述18.2. 分区类型18.2.1. RANGE分区18.2.2. LIST分区18.2.3. HASH分区18.2.4. KEY分区 阅读全文
posted @ 2017-04-20 20:07 Alamps 阅读(18608) 评论(1) 推荐(1) 编辑
摘要: /** * 分页按条件查询权限列表 * @param keywords * @return */ @RequestMapping(value = "/getByCondition2", method = { RequestMethod.GET, RequestMethod.POST }) public @Respon... 阅读全文
posted @ 2017-04-19 19:54 Alamps 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: public static List CollStringToIntegerLst(List inList){ List iList =new ArrayList(inList.size()); CollectionUtils.collect(inList, new Transformer(){ ... 阅读全文
posted @ 2017-04-19 17:25 Alamps 阅读(1838) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 48 下一页