slave的几个类结构: Master_info:用于IO线程的参数,包括连接master实例的信息。
Relay_log_info:用于sql线程,表示relay log相关的信息。
Slave_worker:继承Relay_log_info,包括一个job队列,用于并行的worker线程。...
分类:
数据库 时间:
2014-05-08 19:28:57
阅读次数:
369
Chef and The Right Triangles
The Chef is given a list of N triangles. Each triangle is identfied by the coordinates of its three corners in the 2-D cartesian plane. His job is to figure out how m...
分类:
其他好文 时间:
2014-05-07 16:28:35
阅读次数:
314
??
run{
allocate channel d1 type disk;
allocate channel d2 type disk;
allocate channel d3 type disk;
allocate channel d4 type disk;
allocate channel d5 type disk;
allocate channel d6 type disk;...
分类:
其他好文 时间:
2014-05-07 15:45:24
阅读次数:
347
在项目数据库设计过程中由于单表的数据量非常庞大,需要对表进行分区处理。由于表中的数据是历史交易,故按月分区,提升查询和管理。
由于之前对于表分区了解不多,为了实现上述功能查了很多资料,一开始的方向是通过Crontab调用Shell脚本来按月自动创建分区,或者使用Oracle的Job调用存储过程来自动创建分区。在研究上述两套方案的过程中,无意发现Oracle11g有间隔分区功能,对于使用Ran...
分类:
数据库 时间:
2014-05-07 02:51:26
阅读次数:
350
《谷歌和亚马逊如何做产品》基本信息原书名:Shipping
greatness:practical lessons on building and launching outstanding
software,learned on the job aGoogle and Amazon?作者: (美)...
分类:
其他好文 时间:
2014-05-07 02:36:34
阅读次数:
338
封装了一个基于C++11的线程池对象。
异步执行的任务,从线程池中分配一个空闲的线程来执行该任务.
如果没有空闲的线程可以执行,则进入队列排队
task_pool_init(10);
for( int i = 0 ; i < 200 ; i ++ )
{
run_job([i]{
std::this_thread::sleep_for(std::chrono::seconds(1));
});
}
...........................
...
分类:
编程语言 时间:
2014-05-06 23:16:37
阅读次数:
378
#vim:tabstop=4shiftwidth=4softtabstop=4
#Copyright2010UnitedStatesGovernmentasrepresentedbythe
#AdministratoroftheNationalAeronauticsandSpaceAdministration.
#Copyright2011JustinSantaBarbara
#AllRightsReserved.
#Copyright(c)2010CitrixSystems,Inc.
#
#Licensed..
分类:
数据库 时间:
2014-05-06 20:19:17
阅读次数:
629
一、数据迁移简介所谓的数据迁移,就是指将原有的数据库系统迁移到另外一个业务系统上数据迁移的原因是多种多样的,有可能是业务变更、硬件升级、平台切换或升级mysql数据库迁移的注意事项:(1)、相同版本可以迁移(2)、注意版本可以使用的引擎(3)、低版本可以向高版本进行数据..
分类:
数据库 时间:
2014-05-06 20:07:12
阅读次数:
530
今天遇到一个问题,安装在服务器上的MSSQL2005数据库修改了默认1433端口,服务器自己连接数据库没有任何问题(之前别人安装,配置好的),当我在其它电脑上安装MSSQL2008连接到服务器上的数据库时就遇到报错,根据报错的信息在网上找了各种资料,都没有解决,特别郁闷。其实这..
分类:
数据库 时间:
2014-05-06 17:00:59
阅读次数:
526
Contents1、概述...2、开创磁盘备份的新模式...3、重复数据删除...4、破解磁盘瓶颈点...5、全局数据消重文件系统DDFS.6、CPU-Centric存储系统...7、数据无损体系结构...8、备份与归档一体化...9、高效的远程数据复制...1、概述长期以来备份存储领域被磁带所统治,其主要原因有..
分类:
其他好文 时间:
2014-05-06 15:43:31
阅读次数:
575