【 声明:版权全部,欢迎转载,请勿用于商业用途。 联系信箱:feixiaoxing @163.com】 hash表,有时候也被称为散列表。个人觉得,hash表是介于链表和二叉树之间的一种中间结构。链表使用十分方便,可是数据查找十分麻烦;二叉树中的数据严格有序,可是这是以多一个指针作为代价的结果。ha...
分类:
编程语言 时间:
2014-11-13 14:30:24
阅读次数:
231
如果因为Pool中Master主机由于某种原因导致失效,会引起整个Pool进入紧急模式,恢复步骤如下:在成员服务器上输入如下命令# xe host-emergency-ha-disable (关闭HA) #xe-toolstack-restart 这些将会关闭成员服务上运行的虚拟机 如果确认原Mas...
分类:
其他好文 时间:
2014-11-11 18:59:16
阅读次数:
283
1 heartbeat 是款开源的 HA产品,提供了三个版本,v1 v2 v3LINUX 5 上用的是 V2版本LINUX 6 上用的是 V3 版本版本之间是有区别的,V3 版本把资源代理 heartbeat cluster-glue resource-agents 分离开来了 作为了三个独立的项....
分类:
其他好文 时间:
2014-11-11 18:11:17
阅读次数:
289
类型unsigned int 可以所写为unsigned和其他整型不同,字符型被分为了三种:char,signed char,unsigned char。类型char和类型 signed char 并不一样。类型char实际上会表现为上诉两种形式中的一种,具体由编译器决定。当我们赋给无符号类型一个超...
分类:
其他好文 时间:
2014-11-10 17:06:51
阅读次数:
172
Hadoop2NameNodeHA配置Hadoop2官方提供了两种NameNodeHA的实现方式,分别基于QJM和NFS,这里以基于QJM的HDFSHA为例。实验环境系统版本:CentOSrelease6.4(Final)Hadoop版本:ApacheHadoop2.5.1Hive版本:Hive0.13.1IP列表IPHostnameNameNodeDataNodeRMNodeManagerJournalNode192..
分类:
其他好文 时间:
2014-11-08 02:16:48
阅读次数:
322
ant -f .xml tagetjavac *.java -cp a.jar;b.jar;c.jar(跟上jar包)(Linux useradd 无效)cd vi .bash_profile 修改为PATH=$PATH:/usr/sbin/useraddyast(Linux 看GUI界面 ha.....
分类:
其他好文 时间:
2014-11-07 18:53:41
阅读次数:
191
1、用的地方不一样 where可以用在select update delete insert......into语句中 having只能用在select语句中2、执行顺序不一样 where的搜索条件是在执行语句进行分组之前应用 having的搜索条件是在分组条件之后执行的如果where和ha...
分类:
其他好文 时间:
2014-11-07 16:53:17
阅读次数:
167
#include#include#includeusing namespace std; #define HASHSIZE 7#define NULLKEY -32768 struct HashTable{ int *elem; int count;};void init(HashTable* ha...
分类:
其他好文 时间:
2014-11-05 23:04:37
阅读次数:
153
1.安装heartbeat下载需要的源:wgetftp://mirror.switch.ch/pool/1/mirror/scientificlinux/6rolling/x86_64/os/Packages/epel-release-6-5.noarch.rpm2.安装heartbeat:yum-yinstallheartbeat*3.配置heartbeat3.1.拷贝模板配置文件:cp/usr/share/doc/heartbeat-3.0.4/ha.cf/e..
分类:
其他好文 时间:
2014-10-30 19:24:48
阅读次数:
177
【题目】
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would ha...
分类:
编程语言 时间:
2014-10-30 17:02:57
阅读次数:
249