Currently our target is to get a solid state for what we have in code base already (with added efficiency). There are lot of pending issues about consistency and locking in corner cases. (for example: afr write order, unify rename issue etc). <br>
Our main focus with this release is to have a codebase with no complaints. (about what it claims what it supports). Also we understand that now our logging is not user friendly, which we are working to make userfriendly and no excessive logs.<br>
<br>As of now, our plan is to start with new development features as soon as basic things needed for above mentioned points are complete. We will try to start development with new (hot add/remove, distributed namespace, lot more options with management tools) features at July beginning.<br>
<br>Regards,<br>Amar<br><br><div class="gmail_quote">On Mon, Jun 9, 2008 at 9:30 AM, Onyx &lt;<a href="mailto:lists@bmail.be">lists@bmail.be</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Any news on the schedule for the live config change (add/remove volumes without having to restart glusterfs)?<div><div></div><div class="Wj3C7c"><br>
<br>
<br>
<br>
Amar S. Tumballi wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
One more addition to this release is<br>
<br>
* errno compatibility:<br>
 &nbsp; This will enable a process to see the proper errnos in cases of cross OS<br>
server/client setups.<br>
<br>
Regards,<br>
Amar<br>
<br>
On Fri, Jun 6, 2008 at 2:24 PM, Amar S. Tumballi &lt;<a href="mailto:amar@zresearch.com" target="_blank">amar@zresearch.com</a>&gt; wrote:<br>
<br>
 &nbsp;<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>
&nbsp;As the topic says, I want to give you all a snapshot of whats coming in<br>
1.4.x series and where is our main focus for the release.<br>
<br>
1.4.x -<br>
* Performance of GlusterFS (reduced CPU and memory usage, protocol<br>
enhancements)<br>
* Non blocking I/O - to give more responsiveness to GlusterFS, remove the<br>
issues faced due to timeout, freezing etc.<br>
* Few features to handle different verticals of storage requirements.<br>
<br>
The tarballs will be available from -<br>
<a href="http://ftp.zresearch.com/pub/gluster/glusterfs/1.4-qa/" target="_blank">http://ftp.zresearch.com/pub/gluster/glusterfs/1.4-qa/</a><br>
Advised to use only latest tarballs in directory, and Report bugs through<br>
Savannah Bug tracking system only, so its easier for us to track them.<br>
<br>
You can shift to &#39;glusterfs--mainline--3.0&#39; branch (from which glusterfs<br>
-1.4.0qa releases are made) if you want to try the latest fixes. Though none<br>
of these are not yet advised for production usage.<br>
<br>
That was a higher level description of what is coming. Here are exact<br>
module/translator wise description of whats inside the tarball for you.<br>
<br>
* nbio - (non-blocking I/O) This feature comes with significant/drastic<br>
changes in transport layer. Lot of drastic changes to improve the<br>
responsiveness of server and to handle more connections. Designed to scale<br>
for higher number of servers/clients.<br>
 &nbsp;- NOTE that this release of QA has only TCP/IP transport layer supported,<br>
work is going on to port it to ib-verbs module.<br>
<br>
* binary protocol - this reduces the amount of header/protocol data<br>
transfered over wire significantly, also reduces the CPU usage as there is<br>
no binary to ASCII (and vica-versa) involved at protocol layer. The<br>
difference may not be significant for large file performance, but for small<br>
files and meta operations this will be phenomenal improvement.<br>
<br>
* BDB storage translator - Few people want to use lot and lot of small<br>
files over large storage volume, but for them the filesystem performance for<br>
small files was a main bottleneck. Number of inodes spent, overall kernel<br>
overhead in create cycle etc was quite high. With introduction of BDB<br>
storage at the backend, we tried to solve this issue. This is aimed at<br>
giving tremendous boost for cases where, millions and millions of small<br>
files are in a single directory.<br>
[NOTE: This is not posix complaint as no file attribute fops are not<br>
supported over these files, however file rename and having multiple<br>
directory levels, having symlinks is supported].<br>
GlusterFS BDB options here:<br>
<a href="http://gluster.org/docs/index.php/GlusterFS_Translators_v1.3#Berkeley_DB" target="_blank">http://gluster.org/docs/index.php/GlusterFS_Translators_v1.3#Berkeley_DB</a><br>
Also refer this link -<br>
<a href="http://www.oracle.com/technology/documentation/berkeley-db/db/gsg/CXX/dbconfig.html" target="_blank">http://www.oracle.com/technology/documentation/berkeley-db/db/gsg/CXX/dbconfig.html</a>, so you can tune BDB better. We are still investigating the performance<br>

numbers for files bigger than page-size, but you can give it a try if your<br>
avg file size is well below 100k mark.<br>
<br>
<br>
* libglusterfsclient - A API interface for glusterfs (for file<br>
create/write, open/write, open/read cases). Which will merge all these calls<br>
in one fop and gives a much better performance by removing the latency<br>
caused by lot of calls happening in a single file i/o. (Aimed at small file<br>
performance, but users may have to write their own apps using libglusterfs<br>
client.<br>
Check this tool -<br>
<a href="http://ftp.zresearch.com/pub/gluster/glusterfs/misc/glfs-bm.c" target="_blank">http://ftp.zresearch.com/pub/gluster/glusterfs/misc/glfs-bm.c</a><br>
You need to compile this like &#39; # gcc -lglusterfsclient -o glfs-bm<br>
glfs-bm.c&#39;<br>
<br>
<br>
* mod_glusterfs: Aimed at solving the problem web hosting companies have.<br>
We embedded glusterfs into apache-1.3.x, lighttpd-1.4.x, lighttpd-1.5, (and<br>
work going on for apache-2.0). By doing this, we could save the context<br>
switch overhead which was significant if web servers were using glusterfs<br>
mountpoint as document root. So, now, the web servers itself can be cluster<br>
filesystem aware hence they see much bigger storage system well within their<br>
space.<br>
For Apache 1.3 -<br>
<a href="http://gluster.org/docs/index.php/Getting_modglusterfs_to_work" target="_blank">http://gluster.org/docs/index.php/Getting_modglusterfs_to_work</a><br>
For Lighttpd -<br>
<a href="http://gluster.org/docs/index.php/Mod_glusterfs_for_lighttpd" target="_blank">http://gluster.org/docs/index.php/Mod_glusterfs_for_lighttpd</a><br>
<br>
* improvement to io-cache to handle mod-glusterfs better.<br>
<br>
Other significant work going on parallel to these things are:<br>
* work towards proper input validation and abort in the cases where any<br>
memory corruption is seen.<br>
* work towards reducing the overhead caused by runtime memory allocations<br>
and free.<br>
* work on reducing the string based operations in the code base, which<br>
reduces the CPU usage.<br>
* log msgs improvement (reduce the log amount, make log rotate work<br>
seemlessly).<br>
* strict check in init() time, so the mounting itself wont happen if some<br>
config is not valid. (To get the points mentioned in &#39;Best Practices&#39; page<br>
into the codebase itself).<br>
* Make sure the port on other OSes work fine.<br>
<br>
We expect to get this branch to stability very soon (within a month or so),<br>
so we won&#39;t be having complains about small file performance and<br>
timeout/hang issues anymore (from 1.3.x branch). Hence your help in testing<br>
this out for your application, &nbsp;your configuration, and reporting bugs would<br>
help us to get it to stability even faster.<br>
<br>
Regards,<br>
GlusterFS Team<br>
<br>
PS: Currently this release of qa is not tested on any other OS than<br>
GNU/Linux. I will write back as soon as we have a fix for each specific OS.<br>
<br>
Regards,<br>
Amar<br>
<br>
--<br>
Amar Tumballi<br>
Gluster/GlusterFS Hacker<br>
[bulde on #gluster/<a href="http://irc.gnu.org" target="_blank">irc.gnu.org</a>]<br>
<a href="http://www.zresearch.com" target="_blank">http://www.zresearch.com</a> - Commoditizing Super Storage!<br>
 &nbsp; &nbsp;<br>
</blockquote>
<br>
<br>
<br>
<br>
 &nbsp;<br>
</blockquote>
<br>
<br></div></div>
_______________________________________________<br>
Gluster-devel mailing list<br>
<a href="mailto:Gluster-devel@nongnu.org" target="_blank">Gluster-devel@nongnu.org</a><br>
<a href="http://lists.nongnu.org/mailman/listinfo/gluster-devel" target="_blank">http://lists.nongnu.org/mailman/listinfo/gluster-devel</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>Amar Tumballi<br>Gluster/GlusterFS Hacker<br>[bulde on #gluster/<a href="http://irc.gnu.org">irc.gnu.org</a>]<br><a href="http://www.zresearch.com">http://www.zresearch.com</a> - Commoditizing Super Storage!