head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.4 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.2 pkgsrc-2012Q4-base:1.5 pkgsrc-2012Q3:1.4.0.8 pkgsrc-2012Q3-base:1.4 pkgsrc-2012Q2:1.4.0.6 pkgsrc-2012Q2-base:1.4 pkgsrc-2012Q1:1.4.0.4 pkgsrc-2012Q1-base:1.4 pkgsrc-2011Q4:1.4.0.2 pkgsrc-2011Q4-base:1.4; locks; strict; comment @# @; 1.5 date 2012.10.19.04.15.22; author manu; state dead; branches; next 1.4; 1.4 date 2011.12.16.05.40.46; author manu; state Exp; branches; next 1.3; 1.3 date 2011.12.09.16.57.44; author manu; state Exp; branches; next 1.2; 1.2 date 2011.11.28.08.42.39; author manu; state Exp; branches; next 1.1; 1.1 date 2011.10.25.08.34.28; author manu; state Exp; branches; next ; desc @@ 1.5 log @Bump to glusterfs-3.3.1, which brings - unified file and object storage - storage for Hadoop (not tested here) - proactive self-healing - much better performance @ text @$NetBSD: patch-bx,v 1.4 2011/12/16 05:40:46 manu Exp $ glusterfs may need lots of data, raise the limit and hope there's enough ram ... --- glusterfsd/src/glusterfsd.c.orig 2011-08-23 14:31:37.000000000 +0200 +++ glusterfsd/src/glusterfsd.c 2011-10-19 15:28:44.000000000 +0200 @@@@ -1008,6 +1008,10 @@@@ lim.rlim_cur = RLIM_INFINITY; lim.rlim_max = RLIM_INFINITY; setrlimit (RLIMIT_CORE, &lim); + if (getrlimit(RLIMIT_DATA, &lim) == 0) { + lim.rlim_cur = lim.rlim_max; + setrlimit(RLIMIT_DATA, &lim); + } return 0; } @ 1.4 log @- SSL bug fixes - Use secondary groups @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @- Add experimental support for SSL - Ignore again .attribute (a patch part that was lost in last upgrade) @ text @@ 1.2 log @Update to glusterfs 3.2.5. This is a bug-fix release @ text @@ 1.1 log @glusterfs memory usage can grow quite large when using a lot of vnodes, and the amount of data memory involved is not easy to forcast. We therefore raise the limit to the maximum. Patch from Manuel Bouyer. It helps completing a cvs update on a glusterfs volume. @ text @@