此文的目的并非鸡汤,纯粹是自己内心被触动后的一些想法。 周末去参加深圳的一个技术沙龙,对一位中年大叔印象特别深刻。年纪应该在50上下,对分布式存储、软件定义网络、虚拟化甚至云计算等IT潮流话题,颇为精通。从他口中说出来的话,掷地有声,落笔成章,不做任何粉饰应该就能上主流媒体的杂志了。他对国家去年提出 Read More
简要谈谈自己对代码审查的几点理解 Read More
DHT(Distributed Hash Table) Translator What is DHT? DHT is the real core of how GlusterFS aggregates capacity and performance across multiple serv... Read More
Glusterfs中,在brick对应的path下,有一个 文件夹,其中保存了相应文件的gfid。比如,有文件的gfid是 ,则其对应gfid路径为: .glusterfs/86/0f/860fc6e5 73fc 42a6 af49 c75f98b52d0c 第一级目录对应gfid的1 2位。第二级... Read More
Introducing shard translatorbyKrutika Dhananjayon December 23, 2015GlusterFS-3.7.0 saw the release of sharding feature, among several others. The feat... Read More
shell脚本中echo显示内容带颜色显示,echo显示带颜色,需要使用参数-e。格式如下:echo-e"\033[41;36msomethinghere\033[0m"其中41的位置代表底色,36的位置是代表字的颜色 。注: 1、字背景颜色和文字颜色之间是英文的"" 2、文字颜色后面有个m ... Read More
Reference "glusterfs doc" Background For a more detailed description, view Jeff Darcy's blog post [here] (http://hekafs.org/index.php/2012/03/gl... Read More
在java代码中有中文注释,使用javac编译时,出现编码报错。 错误: 编码GBK的不可映射字符 问题原因: 在编译的时候,如果我们没有用 encoding参数指定我们的JAVA源程序的编码格式,则javac.exe会获得我们操作系统默认采用的编码格式。 解决方法: 修改文件的编码... Read More
http://www.codeproject.com/Articles/56138/Consistent hashing Read More
getfattr用法 用于获取文件扩展属性,返回一系列键值对,参考 "Linux Man Page" 。 常用OPTIONS n name, name=name Dump the value of the named extended attribute extended attrib... Read More