[infinispan-dev] grouping and GridFS

2014-03-05 Thread Ales Justin
Just having a discussion with Bela about this. I guess having grouping on GridFS' content would make sense. e.g. put all chunks on the same node Is this doable? Afaiu, we would need to have some sort of similarity function for content's metadata? -Ales

Re: [infinispan-dev] grouping and GridFS

2014-03-05 Thread Sanne Grinovero
Why do you chunk at all if you want them stored together? I only use chunking if I can't avoid it, to spread large files. On 5 Mar 2014 11:22, Ales Justin ales.jus...@gmail.com wrote: Just having a discussion with Bela about this. I guess having grouping on GridFS' content would make sense.

Re: [infinispan-dev] grouping and GridFS

2014-03-05 Thread Sanne Grinovero
On 5 March 2014 14:54, Ales Justin ales.jus...@gmail.com wrote: Why do you chunk at all if you want them stored together? I only use chunking if I can't avoid it, to spread large files. That's what's GridFS all about -- store very large files. Hence chunking. So you're saying we should

Re: [infinispan-dev] grouping and GridFS

2014-03-05 Thread Mircea Markus
On Mar 5, 2014, at 3:04 PM, Ales Justin ales.jus...@gmail.com wrote: But yeah, the moment I start chunking, I would still like to have the grouped -- same node. Or that doesn't make sense? (hence having this discussion ;-) -Ales On 05 Mar 2014, at 16:01, Sanne Grinovero

Re: [infinispan-dev] grouping and GridFS

2014-03-05 Thread Sanne Grinovero
On 5 March 2014 16:29, Mircea Markus mmar...@redhat.com wrote: On Mar 5, 2014, at 3:04 PM, Ales Justin ales.jus...@gmail.com wrote: But yeah, the moment I start chunking, I would still like to have the grouped -- same node. Or that doesn't make sense? (hence having this discussion ;-)

Re: [infinispan-dev] grouping and GridFS

2014-03-05 Thread Dennis Reed
It doesn't make sense. :) The reason grid file systems exist is to distribute the file around the cluster. (both for performance so the network interface of a single server isn't a bottleneck, and for disk space so the available space on a single server isn't a bottlenect) If you don't want