[Zope] Zope FTP - OverflowError: requested number of bytes is more than a Python string can hold

2009-12-04 Thread Jan Schulze
Hi all, I am are using ZServer/Medusa for FTP-Uploads to our ZODB. This works for smaller files, but the above error appears in instance.log, when using a ~5 GB file. There's probably nothing I can do about it, as it's an internal python marshalling limit. Or would there be a way to make

Re: [Zope] Zope FTP - OverflowError: requested number of bytes is more than a Python string can hold

2009-12-04 Thread Andreas Jung
You're trying to upload a 5GB file into Zope? Andreas Am 04.12.09 12:47, schrieb Jan Schulze: Hi all, I am are using ZServer/Medusa for FTP-Uploads to our ZODB. This works for smaller files, but the above error appears in instance.log, when using a ~5 GB file. There's probably nothing

Re: [Zope] Zope FTP - OverflowError: requested number of bytes is more than a Python string can hold

2009-12-04 Thread Andreas Jung
And here is a nice comment within marshaller.py: 93 def demarshall(self, obj, data, **kw):$ 94 if kw.has_key('file'):$ 95 if not data:$ 96 # XXX Yuck! Shouldn't read the whole file, never.$ 97 # OTOH, if you care about large files, you

Re: [Zope] Zope FTP - OverflowError: requested number of bytes is more than a Python string can hold

2009-12-04 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jan Schulze wrote: I am are using ZServer/Medusa for FTP-Uploads to our ZODB. This works for smaller files, but the above error appears in instance.log, when using a ~5 GB file. There's probably nothing I can do about it, as it's an internal