Displaying 20 results from an estimated 1000 matches similar to: "rsync out of memory at 8 MB although ulimit is 512MB"
2007 Aug 24
1
Has anyone experience with rsync out of memory
Hello,
we are using rsync on AIX and run into out of memory.
There have been some threads about out of memory and FAX
tells that this is a known problem. So I need to finde
a workaround for this.
Please help me!
We try to sync many (nnnn) Thumbnails of size 2k between
AIX and Linux with
rsync -a --delete --rsh=ssh <source dir> <user>@<server>:<target dir>
I
2004 Feb 06
4
memory reduction
As those of you who watch CVS will be aware Wayne has been
making progress in reducing memory requirements of rsync.
Much of what he has done has been the product of discussions
between he and myself that started a month ago with John Van
Essen.
Most recently Wayne has changed how the file_struct and its
associated data are allocated, eliminating the string areas.
Most of these changes have been
2003 Nov 08
2
malloc errors? out of memory with many files on HP-UX
Hi, folks.
I've started getting these errors from rsync, and any help would be
appreciated:
>ERROR: out of memory in string_area_new buffer
>rsync error: error allocating core memory buffers (code 22) at util.c(115)
>ERROR: out of memory in string_area_new buffer
>rsync error: error allocating core memory buffers (code 22) at util.c(115)
>ERROR: out of memory in
2009 Feb 16
2
rsync 3.0.5 - ERROR: buffer overflow in recv_file_entry [generator]
Hi,
Rsync 3.0.5 on both sides. receiver is Open Solaris and sender is Linux.
I got a nested directory - relatively depth but still it should work. It
fails instead.
sending daemon args: --server --sender -vvlWHogDtpre.is --ignore-errors
--numeric-ids --inplace . TEST/
receiving incremental file list
delta-transmission disabled for local transfer or --whole-file
[...]
overflow: xflags=0x7a
2004 Jan 27
1
Differentiating debug messages from both sides
Some of the debug messages that rsync outputs (when verbose >= 2) can
occur on both sides of the connection. This makes it hard to know which
program is saying what. Some debug messages deal with this by
outputting a "[PID]" string at the start of the message. Unfortunately,
the startup message that tells us which pid is which is only output when
verbose >= 3, so there's a
2008 Aug 15
2
out of memory in flist_expand
Hello list,
I get the following error using rsync 3.0.3 (both sides):
...
data/xxxxxxxx/admin_docs/2/8/9/9/0/7/9/msg-75682-748.msg is uptodate
data/xxxxxxxx/admin_docs/2/8/9/9/0/8/0/msg-75682-749.txt is uptodate
ERROR: out of memory in flist_expand [generator]
rsync error: error allocating core memory buffers (code 22) at util.c(117)
[generator=3.0.3]
rsync error: received SIGUSR1
2011 Jun 17
1
rsync out of memory in flist_expand
Hi,
I have been using rsync for years to perform my backups, but since a
few days it crashes with an "out of memory" error.
I am running Ubuntu 11.04/x86_64, which ships rsync-3.0.8, and I have
also tried with the git version.
I can see the following messages:
[generator] expand file_list pointer array to 524288 bytes, did move
[generator] expand file_list pointer array to 1048576
2006 Mar 31
3
DO NOT REPLY [Bug 3649] New: buffer overflow in receive_file_entry
https://bugzilla.samba.org/show_bug.cgi?id=3649
Summary: buffer overflow in receive_file_entry
Product: rsync
Version: 2.6.0
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: sambesselink@planet.nl
2008 Aug 19
1
rsync hangs after aborting a process
Greetings. In testing an rsync backup script I'd created, I made a mistake
and aborted the running script with a ctrl-C keyboard interrupt. The
command that was running at the time was as follows:
${RSYNC_CMD} -aNHAXx --protect-args --fileflags --force-change
--rsync-path="/usr/local/bin/rsync" <username>@<my.server.com>:${CPY_SRC}
${CPY_DEST}
The expected data
2009 Aug 20
1
Creating a list of combinations
Dear R Users,
I have 120 objects stored in R's memory and I want to pass the names of these many objects to be held as just one single object. The naming convention is month, year in sequence for all months between January 1986 to December 1995 (e.g. Jan86, Feb86, Mar86... through to Dec95). I hope to pass all these names (and their data I guess) to an object called file_list, however,
2007 May 03
3
[PATCH] pygrub: look harder for elilo.conf
Keir,
This would also be appropriate for 3.1.0, since the /usr/lib fix makes
pygrub work on ia64
Presently pygrub only looks in /efi/redhat/elilo.conf. It should
check for other distributions, plus a couple fallback locations.
Signed-off-by: Aron Griffis <aron@hp.com>
diff -r 6d64f9eefad5 -r 67df28389f46 tools/pygrub/src/pygrub
--- a/tools/pygrub/src/pygrub Wed May 02 14:50:56 2007
2004 May 02
1
SEGV on FreeBSD 4.8-STABLE with 2.6.2
I'm getting a SEGV on a FreeBSD 4.8-STABLE box. The client is Solaris
9/SPARC. Both boxes run 2.6.2.
The command I'm running is:
$ rsync -arHRv --numeric-ids --delete --exclude=/opt/dist/cdrom \
[paths] [server]:[path]
If I whittle down what appears in [paths], then it works.
$ gdb rsync rsync.core
gdb> bt
#0 0x280faf0d in strncmp () from /usr/lib/libc.so.4
#1 0x7 in ?? ()
#2
2013 Apr 02
2
please help, iteration through a list of files and plot each one
I have many files in 1 directory, file names end in .txt.
Each file has 2 columns
col1 col2
2 3
3 4
4 5
5 6
I want to make a list of the file names and iterate through each plotting them in a separate file $filename\.png with the png swapped for txt.
So far I have this, can someone help fill in the blanks?
Thank You!
file_list <- list.files()
?
for (file in file_list){
??????
?
?
2012 Apr 11
1
Merging multiple .csv files
Hi all,
I wish to merge 24 .csv files, each having a common identifier-column
("Name") and do two things:
1. Retrieve the common one's. [Analogy: while merging 2-dataframes, similar
to using: merge (.... ,by="Name", all=FALSE) ]
2. Retrieve all, i.e., the union of the rows of 24 files. [again, somthing
like: merge (.... ,by="Name", all=TRUE) ]
On the web,
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
Platform: Compaq OpenVMS Alpha 7.3
Compiler: Compaq C T6.5
The following patch is an update to a previous patch that I submitted.
The only change from the previous patch is that the const qualifier has
been added to write_batch_*() routines to improve compiler efficiency.
Because the gdiff -u was done against the distribution it includes the
previous patch.
The functions with no parameters
2007 Dec 13
3
rsync 3.00pre6 segfault in add_dirs_to_tree
Hi All
I run rsync in an automated environment and it sometime will crash and
leave a core dump file. from core dump, gdb shows that
gdb) bt
#0 add_dirs_to_tree (parent_ndx=-1, from_flist=0x56c590, dir_cnt=1) at
flist.c:1422
#1 0x0000000000409eab in send_file_list (f=16, argc=-1, argv=0x56c238)
at flist.c:2068
#2 0x0000000000419052 in client_run (f_in=16, f_out=16, pid=-1, argc=1,
2008 Jan 31
1
DO NOT REPLY [Bug 5235] New: buffer overflow in receive_file_entry
https://bugzilla.samba.org/show_bug.cgi?id=5235
Summary: buffer overflow in receive_file_entry
Product: rsync
Version: 2.6.9
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: rsync@ofdan.co.uk
2004 Jan 17
1
--delete-sent-files (AKA --move-files)
Yes, it's time once again to return to the subject of moving files.
With the recent changes to the communications code between the receiver
and the generator, there is now a non-clogging channel that we can use
to signal the sender when a file has been successfully transferred,
which allows us delete the original for all transferred files. I have
in the past waffled on whether this feature
2013 Apr 04
6
replacing mkdir -p
Puppet right now requires every element of a path to have an individual
file definition. This makes it had to take an arbitrary path as a
parameter. You are forced to require your client to make the entire path
structure for you or instead you use an exec resource and call mkdir -p.
Using an exec resource does not generate an File resources so autorequire
does not work.
I didn''t
2007 Jul 27
1
locals within a partial
How do you access something you''ve passed to a partial in the locals hash?
<% for file in @file_list %>
<tr id="file_row_<%= file[0].id %>">
<%= render_no_layout :template => "/shared/_file",
:locals => { :file => file } %>
</tr>
<% end %>
but when rendering the shared/_file.rhtml template it complains about