Displaying 20 results from an estimated 1114 matches for "redo".
Did you mean:
red
2003 May 09
2
Revisiting two old issues
...an't block with resend requests.
- The "move files" patch that got changed into a --delete-sent-files
option.
For each item I have two questions -- do we need to deal with this?
And is the proposed change a good way to implement the change? Some
comments on each item follow:
Redo-Channel Anti-Hang Patch
============================
I've had a couple different incarnations of this patch because the IO
section is quite complex and there were concerns about memory usage (if
rsync keeps the redo channel clear, it has to note the redo items
somewhere). My first one kept a...
2004 Jan 15
1
Resolving problems in the generator->receiver pipes
...ssages were getting lost. These messages
get output very near the end of the transfer, and it turns out that
the reason for the loss was that there are two pipes flowing from
the generator and the receiver, and it was possible for the "we're
all done" message to get received down the redo pipe without all of
the messages getting sent down the error pipe. It's also a long-
known bug that the redo pipe can clog (but only if a really large
number of redo items build up).
In looking at this code, I figured out that it would be much better
to just dump the redo pipe and use the err...
2004 Nov 09
1
redoing error causes backup file failure on target
It looks like rsync 2.5.4 vs 26 has a bug when the target file is backed
up with a suffix. For a large 1 GB file transfer, an error "redoing"
appeared in the debug. In other words, when you see redoing in your debug
expect the backup not to have worked correctly. I didn't see this problem
btwn naxpap01 and rwxp25l1 just btwn rwxp25l1 and naxp18l1. I'm pulling
the code from source to target.
In this example, 4,10,11...
2005 Feb 11
3
OCFS file system used as archived redo destination is corrupted
we started using an ocfs file system about 4 months ago as the shared archived redo destination for the 4-node rac instances (HP dl380, msa1000, RH AS 2.1) . last night we are seeing some weird behavior, and my guess is the inode directory in the file system is getting corrupted. I've always had a bad feeling about OCFS not being very robust at handling constant file crea...
2006 Nov 21
2
how do you redo the LABEL tag so the machine boots
I got a different motherboard today.
took my sata drive and put it on the new motherboard.
On boot it says kernel panel not LABEL=/ not found.
How do I redo the label and tell it /dev/sda1 is "/"?
Jerry
2020 Aug 19
2
Redo en RStudio, Ctrl y?
Buenas tardes. Más bien una curiosidad.
Echaba de menos poder rehacer con *Ctrl y* lo deshecho con *Ctrl z*. Lo
curioso es que RStudio, desde hace un tiempo, en la pestaña *Edit*, al lado
de *Redo *pone "*Ctrl y", *pero *Ctrl y* no funciona. ¿sabe alguien por
qué?
Gracias,
Manuel
[[alternative HTML version deleted]]
2005 Nov 29
3
Is it possible to backup database using rsync?
Hi everyone,
I want to back up my database using log files.
1. Is it possible to backup database using rsync?
2. Can it copy redo log file which are open?
3. It has any special feature to handle redo log files of database while
copying?
Urgent help needed.....
regards
Harish Naik
2007 Dec 09
2
rake db:redo & rake migrations:reset - or how to cope with the change of db:reset
...riginal patch).
Instead I agreed with David that in production mode db:reset should
use the schema.rb file.
I could have split the db:reset task to behave differently depending
on the environment, but I think that would be way too confusing.
Instead I came up with another approach.
First, rake db:redo http://dev.rubyonrails.org/ticket/10431 which
takes care of 85% of my development issues after the db:reset switch.
rake db:redo ''resets/re-does'' the last migration. Technically, it
migrates down one (or more steps) and then migrate up.
This task works perfectly.... well almost....
2014 Jun 24
4
[LLVMdev] Any way get debug output of generated assembly from MCJIT without completely redoing CodeGen?
...one MachneModuleInfo pass maintaining various state information (MCSections, MCSymbols, etc.) and the two AsmPrinter passes interfere with each other.
The only way I've been able to get this to work is to create an entirely separate PassManager, and use addPassesToEmitFile() on it, which will redo the entire CodeGen process again unnecessarily.
Does anyone have any ideas/pointers on how I might do this efficiently? This is only for a debugging aid, but I'd like to not have to compile everything twice when it's enabled.
Thanks
Craig
2020 Aug 19
2
Redo en RStudio, Ctrl y?
...a (<
> mmendoza en fulbrightmail.org>) escribió:
>
> > Buenas tardes. Más bien una curiosidad.
> > Echaba de menos poder rehacer con *Ctrl y* lo deshecho con *Ctrl z*. Lo
> > curioso es que RStudio, desde hace un tiempo, en la pestaña *Edit*, al
> lado
> > de *Redo *pone "*Ctrl y", *pero *Ctrl y* no funciona. ¿sabe alguien por
> > qué?
> > Gracias,
> > Manuel
> >
> > [[alternative HTML version deleted]]
> >
> > _______________________________________________
> > R-help-es mailing list
> >...
2013 Feb 13
7
PuppetDB & KahaDB db.data leak
...e size of the files in
/var/lib/puppetdb/localhost/KahaDB. For example, here is the size on
my test machine:
root@puppetdb1:/var/lib/puppetdb/mq/localhost/KahaDB# pwd
/var/lib/puppetdb/mq/localhost/KahaDB
root@puppetdb1:/var/lib/puppetdb/mq/localhost/KahaDB# du -sk *
5552 db-1.log
32 db.data
32 db.redo
0 lock
root@puppetdb1:/var/lib/puppetdb/mq/localhost/KahaDB#
And an indication of how long its been running:
$ ps auxw | grep java
puppetdb 52606 0.3 3.6 1536236 216136 ? Sl 13:34 0:55
/usr/bin/java -XX:OnOutOfMemoryError=kill -9 %p -Xmx1g
-XX:+HeapDumpOnOutOfMemoryError
-XX:HeapDumpPa...
2008 Mar 23
0
Redoing FAQ
Hi,
While I was interested to add some FAQ items regarding CentOS
continuity/release frequency, I noticed that the FAQ didn't look all too
well and the old TOC was seperately maintained from the content/titles.
I changed this for the General FAQ and will do so for the other FAQs as
well. You can see the difference between the old:
2008 Jul 21
1
Howto Restart A Function with Try-Error Catch
...it "myfunction". This function is based
on some random
number generator. Now, once in a while the function will break/crash depending
on the random number it generate inside the function.
To avoid the problem, what I intend to do is the following:
1. Catch the try-error using class.
2. Redo the function if it returns "try-error"
3. Otherwise keep the output of the function.
I'm not sure how to create the above construct.
The code I have below doesn't work:
__BEGIN__
myfunction <- function(the_x) {
# do something
a = list(output1=val1, outp...
2004 Jun 04
1
RHE L3 -- OCFS 1.0.9-12 and 1.0.12
Running database in ASYNC mode in RHEL 3 has a potential risk of redo logs failure due to some short io's.
A note from
http://oss.oracle.com/projects/ocfs/dist/files/RedHat/RHEL3/i386/README.txt
says that the above mentioned problem is fixed in OCFS 1.0.9-12
"RELEASE 1.0.9-12
Fixes a potential corruption with large, aligned, direct I/Os, for
example Orac...
2014 Jun 24
2
[LLVMdev] Any way get debug output of generated assembly from MCJIT without completely redoing CodeGen?
...us state
>> information (MCSections, MCSymbols, etc.) and the two AsmPrinter passes
>> interfere with each other.
>>
>> The only way I've been able to get this to work is to create an entirely
>> separate PassManager, and use addPassesToEmitFile() on it, which will redo
>> the entire CodeGen process again unnecessarily.
>> Does anyone have any ideas/pointers on how I might do this efficiently?
>> This is only for a debugging aid, but I'd like to not have to compile
>> everything twice when it's enabled.
>>
>> Thanks
>...
2005 Mar 24
3
help.start search
Dear R experts,
When using R 2.1 under Red Hat Enterprise Linux 4 with Mozilla 1.7.6 as
browser, help.start() almost works correctly. When I follow one of the
search result links everything is fine, but when I go back to follow
another link, I find them all inactive. So I have to redo the search.
Any suggestions?
Thanks,
Carlisle Thacker
> version
_
platform i686-redhat-linux-gnu
arch i686
os linux-gnu
system i686, linux-gnu
status
major 2
minor 0.1
year 2004
month 11
day 15
language R
2017 Nov 01
5
NoScript allow scripts globally reversible?
...ox freezes up a lot.
Recently I've had difficulty accessing a site.
I suspect the reason is that it uses redirection in a way that
frustrates my efforts to give it permission.
To test the notion, I'm considering temporarily allowing script globally.
How hard is it to reverse?
Will I need to redo previous permissions one at a time?
--
Michael hennebry at web.cs.ndsu.NoDak.edu
"Sorry but your password must contain an uppercase letter, a number,
a haiku, a gang sign, a heiroglyph, and the blood of a virgin."
-- somee...
2005 Sep 09
2
File Corruption
We are using rsync to transfer Oracle redo logs from one system to
another over a WAN/VPN. The problem we are having is that 1 out of about
500 or so files sent is corrupted. The receiving Oracle server produces
a message like this:
---
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
ORA-00283: recovery session canceled due...
2015 Aug 05
2
CentOS 5 grub boot problem
...9;t have such a
> drive because the current partition scheme you've posted would be
> sub-optimal if it does have 4096 byte sectors.
Oops. I just reread that this is now SATA. New versions of hdparm and
smartctl can tell you if the drive is Advanced Format, and if it is,
then I recommend redoing the partition scheme so it's 4K aligned. And
so that it has an MBR gap. The current way to do this is have the 1st
partition start at LBA 2048.
--
Chris Murphy
2010 May 01
3
How to schedule for a repeated task?
Dear All
I need to schedule for a repeated task on my CentOS server, as the
followings:
-) Telnet to a remote node
-) Issue a command
-) Capture the output in a log
-) Logout from Telnet
-) Wait for a prescribed time interval
-) Then redo , but append the subsequent output in just on file
Can you please let me know which options do we have to write such a task?
Thank you
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20100501/a663dd15/attachmen...