Re: Responding to Requests with Chunks/Streaming

2012-04-12 Thread Mikhail Khludnev
...). Is it really different from what you are trying to achieve ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Responding-to-Requests-with-Chunks-Streaming-tp3827316p3829909.html Sent from the Solr - User mailing list archive

Re: Responding to Requests with Chunks/Streaming

2012-04-02 Thread Mikhail Khludnev
are trying to achieve ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Responding-to-Requests-with-Chunks-Streaming-tp3827316p3829909.html Sent from the Solr - User mailing list archive at Nabble.com. -- Sincerely yours

Re: Responding to Requests with Chunks/Streaming

2012-03-29 Thread Mikhail Khludnev
different from what you are trying to achieve ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Responding-to-Requests-with-Chunks-Streaming-tp3827316p3829909.html Sent from the Solr - User mailing list archive at Nabble.com

Re: Responding to Requests with Chunks/Streaming

2012-03-16 Thread Nicholas Ball
/Responding-to-Requests-with-Chunks-Streaming-tp3827316p3829909.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Responding to Requests with Chunks/Streaming

2012-03-15 Thread Erick Erickson
Somehow you'd have to create a custom collector, probably queue off the docs that made it to the collector and have some asynchronous thread consuming those docs and sending them in bits... But this is so antithetical to how Solr operates that I suspect my hand-waving wouldn't really work out.

Re: Responding to Requests with Chunks/Streaming

2012-03-15 Thread Nicholas Ball
Thanks for the reply Erik, Yep, the project is working with distributed Solr applications (i.e. shards) but not with the Solr supplied shard implementation, rather a custom version (not very different to it to be honest). I understand that Solr has scoring at it's heart which is something we are

Re: Responding to Requests with Chunks/Streaming

2012-03-15 Thread Mikhail Khludnev
Hello Nicholas, Looks like we are around the same point. Here is my branch https://github.com/m-khl/solr-patches/tree/streaming there are only two commits on top of it. And here is the test

Re: Responding to Requests with Chunks/Streaming

2012-03-15 Thread lboutros
in context: http://lucene.472066.n3.nabble.com/Responding-to-Requests-with-Chunks-Streaming-tp3827316p3829909.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Responding to Requests with Chunks/Streaming

2012-03-15 Thread Mikhail Khludnev
it's working quite well (I've back-ported the code in Solr 3.5.0...). Is it really different from what you are trying to achieve ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Responding-to-Requests-with-Chunks-Streaming-tp3827316p3829909

Responding to Requests with Chunks/Streaming

2012-03-14 Thread Nicholas Ball
Hello all, I've been working on a plugin with a custom component and a few handlers for a research project. It's aim is to do some interesting distributed work, however I seem to have come to a road block when trying to respond to a clients request in multiple steps. Not even sure if this is