Read this PDF:Hbase_performance[……]
关于Partial write for all MySQL and Oracle
很久之前看过这个帖子,当时没有细究,这几天看了下mysql相关的internal 突然想起这个问题,跟三四个朋友讨论了下 想把这个问题展开讲一讲。
源帖子内容见:https://community.oracle.com/thread/1087650?start=0&tstart=0
这个帖子的内容为一个老外问oracle如何避免partial write的,也就是大家所说的半个IO问题,IO 在写到一半的时候发生断裂,(瞬间断线,瞬间crash瞬间存储或者机器故障等) 虽然这个情况极少发生,但是在非常规恢复的时候也是经常遇到的,例如某个block内部出现不一致,也就是我们所谓的逻辑[……]
Some data collection display
Reference Oracle AWR. These two was developed by python and perl.
Both of these are following data collection method.
Use these tools can help quick identify problem.
MyAWR v2 –collection of mysql and os information
Talk about some MySQL HA architecture
Advanced Pagination for MySQL
看到叶金荣的一篇关于mysql分页的文章,结合雅虎之前发的一篇PDF 谈谈自己的看法
在叶子的文章里谈到了使用inner join 从而减少了对page的扫描也就是减少了所谓的回表 例如:
SELECT * FROM `t1` INNER JOIN ( SELECT id FROM `t1`ORDER BY id DESC LIMIT 935500,10) t2 USING (id)
通过直接对id的操作 而不是整张表的扫描 通过id 的join 抓出符合条件id 然后通过ID 再去做数据的抓取。这样就避免了对不需要的页面的扫描。
不过这样也不是最佳的方法 还可以通过对[……]
小型机迁移x86平台之老生常谈
You can view this presentation click here: x86_architect
注意使用chrome打开文件 不然可能乱码[……]
NoSQL压测工具YCSB
Download PDF from slideshare
基于mongodb的压力评测工具 YCSB的一些概括
YCSB 是一款基于NOSQL Benchmark的工具,提供了多种方式模拟测试nosql的负载,基于现在对nosql的一些压力测试还没有得到重视.
YCSB 的全面的测试功能可以给即将上线的nosql提供一种另类保障。
There are many new serving databases available, including:
PNUTS BigTable HBase Hypertable Azure Cassandra Couch[......]
MongoDB not preallocate journal log
在安装mongodb 2.6.2的时候发现一个奇怪的问题 RS 节点的journal log并没有提前分配.我们知道在安装mongodb的时候
mongo总是会预先分配journal log 启用smallfile的时候默认为128MB 否则会分配1GB的journal log
下面是仲裁节点的日志:
2014-06-17T11:50:09.842+0800 [initandlisten] MongoDB starting : pid=4749 port=27017 dbpath=/data/mongodb/data 64-bit host=vm-3-57 2014-06-[......]
MySQL Fabric HA&Sharding solutions
Good news for MySQL HA solutions
Oracle Clusterware is portable cluster software that allows clustering of independent servers so that they cooperate as a single system. Oracle Clusterware was first released with Oracle Database 10g Release 1 as the required cluster technology for the Oracle multi-instance database, Oracle[……]