Re: [Zope3-Users] NOTICE: zope.org server move

2008-06-11 Thread Marius Gedminas
On Wed, Jun 11, 2008 at 01:22:18AM -0500, Jens Vagelpohl wrote:
 The zope.org-related servers and services maintained by Zope Corporation 
 will be moving to a new home late Thursday night Eastern Standard Time.

 How long will the outage last?
 

 The servers will be moved physically to a new hosting provider. There  
 will be an outage of about 2 hours for the physical move, as well as an 
 outage while the new DNS information for these services propagate  
 throughout the internet.

If the sysadmins reduce the DNS TTLs to something like 5 minutes, and do
that well in advance of the physical move (say, couple of days before),
then new DNS information should propagate quickly.

Regards,
Marius Gedminas
-- 
Microsoft is not the answer.
Microsoft is the question.
No is the answer.


signature.asc
Description: Digital signature
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] NOTICE: zope.org server move

2008-06-11 Thread Reinoud van Leeuwen
On Wed, Jun 11, 2008 at 02:05:51PM +0300, Marius Gedminas wrote:
 On Wed, Jun 11, 2008 at 01:22:18AM -0500, Jens Vagelpohl wrote:
  The zope.org-related servers and services maintained by Zope Corporation 
  will be moving to a new home late Thursday night Eastern Standard Time.
 
  How long will the outage last?
  
 
  The servers will be moved physically to a new hosting provider. There  
  will be an outage of about 2 hours for the physical move, as well as an 
  outage while the new DNS information for these services propagate  
  throughout the internet.
 
 If the sysadmins reduce the DNS TTLs to something like 5 minutes, and do
 that well in advance of the physical move (say, couple of days before),
 then new DNS information should propagate quickly.

That would be the case if all DNS servers would be perfect

-- 
__
Nothing is as subjective as reality
Reinoud van Leeuwen[EMAIL PROTECTED]
http://reinoud.van.leeuwen.net
__
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


[Zope3-Users] is it possible to copy object b/w two zodb Database

2008-06-11 Thread rahul bhaskar
Hi,
I am facing some problem with merging two zodb file.
is it possible to open two zodb Database at a time and copy object
from one to another.

Regards
Rahul Bhaskar
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] is it possible to copy object b/w two zodb Database

2008-06-11 Thread Jim Fulton


On Jun 11, 2008, at 10:36 AM, rahul bhaskar wrote:


Hi,
I am facing some problem with merging two zodb file.
is it possible to open two zodb Database at a time and copy object
from one to another.



Yes, using the export/import mechanism.

Jim

--
Jim Fulton
Zope Corporation


___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] is it possible to copy object b/w two zodb Database

2008-06-11 Thread Stephan Richter
On Wednesday 11 June 2008, Jim Fulton wrote:
 On Jun 11, 2008, at 10:36 AM, rahul bhaskar wrote:
  Hi,
  I am facing some problem with merging two zodb file.
  is it possible to open two zodb Database at a time and copy object
  from one to another.

 Yes, using the export/import mechanism.

Stupid question: Which one? I tried straight xmlpickle and got some errors 
randomly.

Regards,
Stephan
-- 
Stephan Richter
Web Software Design, Development and Training
Google me. Zope Stephan Richter
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] is it possible to copy object b/w two zodb Database

2008-06-11 Thread Jim Fulton


On Jun 11, 2008, at 4:22 PM, Stephan Richter wrote:


On Wednesday 11 June 2008, Jim Fulton wrote:

On Jun 11, 2008, at 10:36 AM, rahul bhaskar wrote:

Hi,
I am facing some problem with merging two zodb file.
is it possible to open two zodb Database at a time and copy object
from one to another.


Yes, using the export/import mechanism.


Stupid question: Which one? I tried straight xmlpickle and got some  
errors

randomly.



I was referring to the binary export/import, which is the only one  
supported by ZODB, afaik, although it's been a very long time since I  
looked at that code.


Jim

--
Jim Fulton
Zope Corporation


___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] is it possible to copy object b/w two zodb Database

2008-06-11 Thread Stephan Richter
On Wednesday 11 June 2008, Jim Fulton wrote:
  Stupid question: Which one? I tried straight xmlpickle and got some  
  errors
  randomly.

 I was referring to the binary export/import, which is the only one  
 supported by ZODB, afaik, although it's been a very long time since I  
 looked at that code.

Where is the code? I could nto find anything quickly?

Regards,
Stephan
-- 
Stephan Richter
Web Software Design, Development and Training
Google me. Zope Stephan Richter
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] is it possible to copy object b/w two zodb Database

2008-06-11 Thread Jim Fulton


On Jun 11, 2008, at 7:51 PM, Stephan Richter wrote:


On Wednesday 11 June 2008, Jim Fulton wrote:

Stupid question: Which one? I tried straight xmlpickle and got some
errors
randomly.


I was referring to the binary export/import, which is the only one
supported by ZODB, afaik, although it's been a very long time since I
looked at that code.


Where is the code? I could nto find anything quickly?



ZODB/ExportImport.py

This defines a class that gets mixed into ZODB.Connection.Connection.

Jim

--
Jim Fulton
Zope Corporation


___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users