Displaying 7 results from an estimated 7 matches for "arena_size".
Did you mean:
area_size
2002 Apr 24
0
memory requirements was RE: out of memory in build_hash_table
...ums) and only
holds the checksums for a single file at a time. But in addition to
memory for larger files this can also improve performance because
there's less computation to be done as well as less block matching.
The downside is potentially more data transferred.
> You suggested setting ARENA_SIZE to 0... I guess this would be done like
> this?
>
> % ARENA_SIZE=0 ./configure
I don't know if the configure script looks in the environment or not,
but my guess would be no. (Took a quick peek and it doesn't look like
that's something munged by configure at all).
If you wa...
2004 Jan 05
0
No subject
...I saw someone on this list recently mentioned changing the block size. The
rsync man page indicates this defaults to 700 (bytes?). Would a larger
block size reduce memory usage, since there will be fewer (but larger)
blocks of data, and therefore fewer checksums to store?
You suggested setting ARENA_SIZE to 0... I guess this would be done like
this?
% ARENA_SIZE=0 ./configure
Doug
David Bolen [mailto:db3l@fitlinxx.com] writes:
> Granzow, Doug (NCI) [granzowd@mail.nih.gov] writes:
>
> > Hmm... I have a filesystem that contains 3,098,119 files. That's
> > 3,098,119 * 56 b...
2011 Jun 22
1
glusterfs 3.2.1 processes in an endless loop?
Hello,
I found a new issue with glusterfs 3.2.1 - im getting a glusterfs process for each mountpoint and
they are consuming all of the CPU time.
strace won't show a thing - so no system calls are made
Mounting the same volumes on another server works fine.
Has anyone seen such a thing? Oder any idea, what causes this and how to fix it?
The logfiles don't show any information about
2008 Dec 04
3
rssync source code as a windows project
Hi Friends,
I have started learning rsync source code but I am finding very difficult to
go back and forth to find the execution flow. I could see that rsync code is
written in UNIX and the compilation is difficult. Does anybody converted it
into Windows Project so that we can open in using Visual Studio IDE and it
will be very simple to search for some function and find the complete work
flow.
2002 Apr 22
0
memory requirements was RE: out of memory in build_hash_table
...trings, so there's something
else going on there too, in theory to help avoid platform growth like
mentioned in my last paragraph. So if you're using <2.4.6, you might
try a later version to see if it improves things. Or if you're using
a later version you might try rebuilding with ARENA_SIZE set to 0 to
disable this code to see if your native platform handles it better
somehow.
-- David
/-----------------------------------------------------------------------\
\ David Bolen \ E-mail: db3l@fitlinxx.com /
| FitLinxx, Inc. \ Phone: (...
2003 Oct 03
2
Cygwin/rsync Hang Problem Testing Results
People of cygwin & rsync,
I recently attempted to get cygwin and rsync working to solve a
backup/mirroring need in my computer life. Well, as you might guess, I
ran into a little but of trouble.
Strangely enough, rsync seemed to be regularly hanging when I attempted
to do a "get" (sycronize a remote to a local dir). Well, considering I
want to automate this, that was not going
2004 Feb 06
4
memory reduction
...used on the daemon side to
* output messages to the log file. */
@@ -254,6 +258,7 @@ enum msgcode {
#include <assert.h>
+#include "lib/pool_alloc.h"
#define BOOL int
@@ -428,20 +433,25 @@ struct file_struct {
uchar flags; /* this item MUST remain last */
};
-#define ARENA_SIZE (32 * 1024)
+/*
+ * Extent size for allocation pools A minimum size of 128KB
+ * is needed to mmap them so that freeing will release the
+ * space to the OS.
+ *
+ * Larger sizes reduce leftover fragments and speed free calls
+ * (when they happen) Smaller sizes increase the chance of
+ * freed all...