自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 资源 (1)
  • 收藏
  • 关注

nginx,uwsgi,bottle,mako安装和性能测试

上一篇 [url=http://jinghong.iteye.com/blog/1283984]nginx,uwsgi,bottle,virtualenv在centos6上安装及性能测试 [/url]测试了nginx,uwsgi和bottle的性能 这篇继续测试一下mako模板性能 1、安装mako [code="shell"] tar -zvxf Mako-0.5.0.tar.gz ...

2011-11-30 19:44:28 175

网站重构(一)--废弃java

[size=medium] [color=red] :idea: C是王道 :idea: C++是正道 :idea: erlang是大道 :idea: python是歪门邪道 :?: java是无间道 [/color] [/size] 公司网站在用java做了3个版本后,终于选择要基本废弃java了。 原因有以下几个方面 1、单一堆的内存管理,stop th...

2011-11-29 23:46:43 127

nginx,uwsgi,bottle,virtualenv在centos6上安装及性能测试

终于决定废弃java而使用python来开发网站,测试web.py的性能有点失望,看到bottle性能不错,也满足我们的需求,符合python simple的理念。测试一下生产环境的性能。 参照[url]http://studio.zeuik.com/?p=791[/url] 测试机器:X5650X2,48G内存,centos6,包括nginx,uwsgi 压测机器:X5680X2,96G内...

2011-11-29 15:12:46 149

原创 使用thrift做c++,java和python的相互调用

linux上安装thrift见 [url]http://jinghong.iteye.com/blog/1102535[/url] thrift做为跨语言调用的方案有高效,支持语言较多,成熟等优点;代码侵入较强是其弱点。 下面记录以C++做服务器,C++,java和python做客户端的示例,这个和本人现在工作环境吻合,使用多线程长连接的socket来建立高效分布式系统的跨语言调用平台。 ...

2011-10-30 01:20:33 276

原创 hive和hbase的整合

使用hbase作为用户行为分析的数据库,为了提高效率,集成了hive。 [b]安装[/b] 使用cloudera的cdh3u0版本,hbase安装见[url]http://jinghong.iteye.com/blog/1051732[/url], 解压hive到/home/hadoop/cdh3 [code="shell"]tar zxvf hive-0.7.0-cdh3u0.tar.g...

2011-07-19 14:55:58 72

原创 thrift0.7.0在ubuntu11.04/11.10和centos6上的安装测试

参照 [url]http://jnb.ociweb.com/jnb/jnbJun2009.html[/url] [url]http://wiki.apache.org/thrift/GettingUbuntuPackages[/url] 安装 ant和ivy [code="shell"] sudo tar xzvf apache-ant-1.8.2-bin.tar.gz -C /us...

2011-06-23 15:17:09 80

在ubuntu11.04上安装erlang R14B03

在ubuntu11.04上按照默认的安装erlang R14B03,hipe不能工作 [code="c"] # erl Erlang R14B03 (erts-5.8.4) [source] [64-bit] [smp:8:8] [rq:8] [async-threads:0] [kernel-poll:false] Eshell V5.8.4 (abort with ^G) [/...

2011-06-10 11:24:51 102

原创 linux常用命令

查看linux某个服务端口的establish连接总数 [code="shell"]netstat -antu | grep 8000 |grep EST| wc -l[/code] 解压文件到那个目录 [code="shell"]tar zxvf xxxx.tar.gz -C /xxx/[/code] 递归查找目录文件里内容 [code="shell"]grep Notificatio...

2011-06-10 10:59:18 80

ubuntu11.04上cloudera cdh3u0的hadoop和hbase分布式安装

[size=large][b]概述:[/b][/size] 业务需要较实时的处理大数据量,并提供大吞吐量的读写,hbase作为一个可选的列数据库,记录一下安装过程,待查。 hbase的安装需要hadoop和zookeeper和hbase,生产环境下需要将zookeeper独立安装,并保证整个集群没有单点。 hbase软件选择cloudera的cdh3u0,apache的版本需要重新编译had...

2011-05-20 14:45:39 111

原创 redis服务器选型

公司要使用redis作为key/value和简单结构的缓存服务器,同时作为高速队列使用,替换原来的memcached。 针对redis服务器的选型,简单的说是单线程能力的cpu越强越好,同时redis可以在一台服务器上部署多个点。 经过对比测试,最终决定使用性价比较高的dell R310单路服务器,X3470的处理器,32G内存,虽然内存只能工作在800MH,但redis更依赖CPU单线程的能...

2011-03-15 07:53:23 427

原创 linux内核版本对吞吐量的影响

硬件环境Dell 1950,E5410X2,16G 原先在使用centos 5.3 x64,内核版本为2.6.18-128.el5,在部署tomcat后,用ab做压力测试,大概有8000/s的吞吐量。 最近升级内核到2.6.35.4,同样用ab和webbench测试一下,结果如下 [code="shell"] [root@OS90 webbench-1.5]# ab -c 1000 -n ...

2011-03-11 14:08:36 294

linux系统获取基础硬件信息的shell

来自[url]http://code.google.com/p/aspersa/[/url] [code="shell"] #!/bin/sh # This program is part of Aspersa (http://code.google.com/p/aspersa/) # ################################################...

2011-01-31 10:24:50 487

The Software Project Manager's Bridge to Agility

When software development teams move to agile methods, experienced project managers often struggle–doubtful about the new approach and uncertain about their new roles and responsibilities. In this book, two long-time certified Project Management Professionals (PMPRs) and Scrum trainers have built a bridge to this dynamic new paradigm. They show experienced project managers how to successfully transition to agile by refocusing on facilitation and collaboration, not "command and control."

2008-10-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除