class CalculateThread extends Thread { private Handler handler; @Override public void run() { super.run(); Looper.prepare(); handler = new Handler() { ...
分类:
编程语言 时间:
2017-08-23 00:53:26
阅读次数:
222
Flume协作框架 Flume协作框架 1.概述 -》flume的三大功能 collecting, aggregating, and moving 收集 聚合 移动 2.框图 3.架构特点 -》on streaming data flows 基于流式的数据 数据流:job-》不断获取数据 任务流:j ...
分类:
Web程序 时间:
2017-08-23 00:40:34
阅读次数:
209
HDFS中高可用性HA的讲解 HDFS Using QJM HA使用的是分布式的日志管理方式 一:概述 1.背景 如果namenode出现问题,整个HDFS集群将不能使用。 是不是可以有两个namenode呢 一个为对外服务->active 一个处于待机->standby 他们的之间共享的元数据交 ...
分类:
其他好文 时间:
2017-08-23 00:40:25
阅读次数:
149
使用Mutex类-互斥锁 owned为true,互斥锁的初始状态就是被主线程所获取,否则处于未获取状态 name为定义的互斥锁名称,在整个操作系统只有一个命名未CSharpThreadingCookbook的互斥量,一个线程得到,其他线程就无法得到这个互斥量了,只能等待。 WaitOne():获取, ...
分类:
编程语言 时间:
2017-08-23 00:36:26
阅读次数:
132
D3 transitions start executing as soon as they’re created, and they’re destroyed once they end. This can present some challenges when attempting to cr ...
分类:
其他好文 时间:
2017-08-22 23:09:55
阅读次数:
218
基于统计学的方法 一、基于正态分布的一元离群点检测方法 假设有 n 个点$(x_1, ...,x_n)$, 那么可以计算出这n个点的均值$\mu$和方差$\sigma$.均值和方差分别被定义为: 在正态分布的假设下,区域$\mu +- 3 \sigma$包含了99.7% 的数据,如果某个值距离分布的 ...
分类:
编程语言 时间:
2017-08-22 19:51:23
阅读次数:
203
一、360全景(不分先后,下同) 【全景故宫】http://mob.visualbusiness.cn/gugong-pc/v1.0.52/index.html 【AirPano故宫全景】http://www.airpano.ru/files/Beijing-China/2-2 【360紫禁城全景】 ...
分类:
数据库 时间:
2017-08-22 19:50:29
阅读次数:
793
1.oracle数据库分页 select * from (select a.*,rownum rc from 表名 where rownum=startrow 2.DB2数据库分页 Select * from (select rownumber() over() as rc,a.* from (se... ...
分类:
数据库 时间:
2017-08-21 20:32:12
阅读次数:
192
1. MapReduce: Simplified Data Processing on Large Clusters 1.1. Abstract 1.2. 1 Introduction 1.3. Programming Model 1.3.1. 2.3 More Examples 1.4. 3 Im ...
分类:
其他好文 时间:
2017-08-21 19:41:34
阅读次数:
143
我们经常会需要把登录成功后的用户信息保存到session中,但是如果我们使用shiro做权限管理,该怎么去实现呢?其实很简单 第一步:写一个类CustomFormAuthenticationFilter继承FormAuthenticationFilter,并重写onLoginSuccess方法,以下 ...
分类:
其他好文 时间:
2017-08-21 18:57:22
阅读次数:
589