Re: [MarkLogic Dev General] Can app server handle file uploads >2GB?

2012-02-07 Thread Florentine, George
One little trick we've found useful on these kind of loosely coupled file transfer architectures is to transmit a small file AFTER the big file transfer is complete to indicate that file transfer of the big file(s) is complete. Lots of ftp servers will create the file in the target directory and

Re: [MarkLogic Dev General] Can app server handle file uploads >2GB?

2012-02-07 Thread Demian Hess
That's great, thanks. On Tue, Feb 7, 2012 at 4:06 PM, David Erickson wrote: > I'll echo Blakeley's comment about the loading binary documents chapter. > > Working with the server's local filesystem can be done with > xdmp:filesystem-directory, xdmp:filesystem-file, etc … > > --Dave > > On Feb 7,

Re: [MarkLogic Dev General] Can app server handle file uploads >2GB?

2012-02-07 Thread David Erickson
I'll echo Blakeley's comment about the loading binary documents chapter. Working with the server's local filesystem can be done with xdmp:filesystem-directory, xdmp:filesystem-file, etc … --Dave On Feb 7, 2012, at 3:58 PM, Demian Hess wrote: > I think FTP is the best choice for this. > > In r

Re: [MarkLogic Dev General] Can app server handle file uploads >2GB?

2012-02-07 Thread Demian Hess
I think FTP is the best choice for this. In regard to monitoring a directory: is there an xdmp function for getting a listing of files and directories from the file system? I didn't see that in the API documents. Thanks, Demian On Tue, Feb 7, 2012 at 2:04 PM, Geert Josten wrote: > Hi Demian, >

Re: [MarkLogic Dev General] Can app server handle file uploads >2GB?

2012-02-07 Thread Michael Blakeley
It sounds like you haven't read http://docs.marklogic.com/5.0doc/docapp.xqy#display.xqy?fname=http://pubs/5.0doc/xml/dev_guide/binaries.xml yet, so start there. -- Mike On 7 Feb 2012, at 10:44 , Demian Hess wrote: > We would like to store large binary files (many EPS and high > resolution PDFs

Re: [MarkLogic Dev General] Can app server handle file uploads >2GB?

2012-02-07 Thread Geert Josten
Hi Demian, My guess at it is that MarkLogic would try to maintain the binary file as request param within memory, which is limited to some size for good reason. With 10+ concurrent requests, all uploading 2 Gb, memory would build up very rapidly. I'm guessing the limits are related to the limits w

[MarkLogic Dev General] MarkLogic & Documentum Integration

2012-02-07 Thread Abhishek53 S
Hi Folks,I found that FLATIRONS SOLUTIONS CORPORATION is providing some connector between MarkLogic & Documentum. Is it an open source or licensed version? Let me know if we have any alternative connector between two repositories.Thanks-Abhishek=-=-= Notice: The information cont

[MarkLogic Dev General] Can app server handle file uploads >2GB?

2012-02-07 Thread Demian Hess
We would like to store large binary files (many EPS and high resolution PDFs) in MarkLogic. It would be easiest for users to create zips with all their files and then upload via an HTML form (enctype=multipart/form-data), but the size of the zip archives would be more than 2GB. Indeed, some individ