高性能集群服务器(Erlang解决方案)
原创文章,转载请注明: 转载自系统技术非业余研究
本文链接地址: 高性能集群服务器(Erlang解决方案)
Post Footer automatically generated by wp-posturl plugin for wordpress.
原创文章,转载请注明: 转载自系统技术非业余研究
本文链接地址: 高性能集群服务器(Erlang解决方案)
Post Footer automatically generated by wp-posturl plugin for wordpress.
原创文章,转载请注明: 转载自系统技术非业余研究
本文链接地址: Erlang低成本云计算
Post Footer automatically generated by wp-posturl plugin for wordpress.
原创文章,转载请注明: 转载自系统技术非业余研究
本文链接地址: Latest News From the Erlang/OTP team at Ericsson 我有抱怨
刚刚结束的Erlang factory会议, Kenneth Lundin按照规矩汇报了下Erlang下一阶段的工作:
请参考: Latest News From the Erlang/OTP team at Ericsson
http://www.erlang-factory.com/upload/presentations/307/OTP_LATEST_NEWS_EUC10.pdf
这次的汇报很让人失望,除了回顾了下R14添加的读写锁的性能, 再有就是R14B01会支持ets的压缩,其他的都没有提到。 特别是上次承偌的numa和每调度器一个内存池的实现都没有提到。
随着硬件的发展,numa的问题越来越凸显。 我昨天测试的Dell 48核心/48G内存的机器,有8个numa node, 在一个进程用到很少内存的时候,系统开始swap, 但是实际上系统还有40G左右的内存。 而且在访问其他node的内存的时候,带宽从6G跌为4G,损失40%的性能。
期待otp团队给力!
Post Footer automatically generated by wp-posturl plugin for wordpress.
原创文章,转载请注明: 转载自系统技术非业余研究
本文链接地址: Tsung用于压测MySQL服务器的脚本
这个MySQL服务器压测的需求是 :
环境: Linux RHEL 5U4 X86-64, 24G内存, 16核.
MySQL服务器在xx.232.36.1上。
压力由最多32个客户端发起,每个客户端分别做update, insert, delete操作,概率分别是50%, 30%, 20%, 每种操作循环999999 × 100次,每100次操作后休息1-3秒。
这样的压力最多持续2个小时。
我们用的是著名的tsung压力测试工具, 之前我有篇blog介绍过, 见这里。
以下是用到的脚本, 用到了比较先进的随机动态参数替换等技术,对于编写此类脚本有很大的借鉴意义。
Read more…
Post Footer automatically generated by wp-posturl plugin for wordpress.
原创文章,转载请注明: 转载自系统技术非业余研究
本文链接地址: 如何在TILEPro64多核心板卡上编译和运行Erlang
参考文章:
1. https://groups.google.com/group/erlang-programming/msg/2d61b1083a10a7b6
美国Tilera公司的众核服务器,单颗内核包含64颗CPU。硬件架构图:
卡长这样的:
Erlang已经可以在这款CPU上成功运行,我们可以参考Ulf Wiger在Multicore ☺ Message-passing Concurrency 文档中关于Erlang在Tilera上的性能图.
Erlang系统前2年就开始正式支持Tilera,一直用这个CPU来调整他的调度器,所以性能和基础的编译运行支持都很到位。
Linux内核2.6.36起就开始支持Tilera的CPU架构了,看起来前途不错。
最近 上海泛腾电子科技 开始在国内销售 Tilera机器, 我公司也得到一台样机,使得我有机会把玩下这个高科技!
该测试机是PCI-e的形式,是单板机,直接安装在PC机或者是服务器里,好处是可以通过主机的VGA口接显示器直接调试。当然也可以作为智能网卡来使用。构成一个与Host的异构结构,通过PCI-e总线进行通讯。
还需要相应的配套SDK: 目前有TileraMDE-2.1.2.112814 和 TileraMDE-3.0.alpha3.116173 二个版本, 来负责和板卡的通信。 推荐用2.0的,好像不容易出问题。
废话少说,让我们开始享受64核心快乐旅程吧!
Read more…
Post Footer automatically generated by wp-posturl plugin for wordpress.
原创文章,转载请注明: 转载自系统技术非业余研究
本文链接地址: ECUG2010分享:C1000K高性能服务器构架技术
Post Footer automatically generated by wp-posturl plugin for wordpress.
原创文章,转载请注明: 转载自系统技术非业余研究
July 05, 2010
ProcessOne has just released OneCached, a Memcached server and client implementation written in Erlang.
OneCached is released under the Erlang Public License (EPL),.
OneCached supports the set, add, replace, get, incr, decr, delete, flush_all and quit commands. It doesn’t handle expiration time.
You call pull the source code from the public repository at: https://git.process-one.net/onecached
git clone git://git.process-one.net/onecached/mainline.git
To compile, just run make, and to start, just type:
bin/onecachedctl start
这个项目是非常简单的一个memcached的模仿, 亮点在于底层用ets, dest, mnesia这样的erlang特有的存储。这个项目的意义在于演示了如何编写一个严肃的Erlang工程,以及需要掌握的技能。对于初学者来讲,这是很好的一个切入点。 你可以在上面修修改改, 打造出你自己的版本。
玩的开心!
Post Footer automatically generated by wp-posturl plugin for wordpress.
Recent Comments