Dockerized Solr service stops responding

2018-10-15 Thread Christian Spitzlay
as not all types we work with support docValues). Can the two things be related, e.g. can lots of exceptions have a side effect that leads to solr not responding any more? Do you have any hints as to what to check for? Best regards Christian Spitzlay -- Christian Spitzlay Senior Software-

Escaping in streaming expression

2018-05-24 Thread Christian Spitzlay
Hello, I’m experimenting with streaming expressions and I wonder how to escape a double quote in a value. I am on 7.3.0 and trying with the text area on http://localhost:8983/solr/#/collname/stream The following expression works for me and returns results: search(kmm, q="sds_endpoint_name:F2",

Re: Escaping in streaming expression

2018-05-25 Thread Christian Spitzlay
inherit the problem. Is this only about double quotes or are there other meta characters that will work with backslash-escaping in non-streaming queries but will not parse as part of streaming expressions? Christian Spitzlay > Am 24.05.2018 um 18:55 schrieb Joel Bernstein : > &g

Streaming Expression intersect() behaviour

2018-06-06 Thread Christian Spitzlay
}, { "EOF": true, "RESPONSE_TIME": 0 } ] } } I would have expected all the docs from the left stream with fieldA values a, c, d and only the docs with fieldA == b missing. Do I have a fundamental misunderstanding? Best regards Christian Spitzlay

Graph traversal: Bypass cycle detection?

2018-06-06 Thread Christian Spitzlay
the consequences would it be possible? Best regards Christian Spitzlay

Re: Graph traversal: Bypass cycle detection?

2018-06-07 Thread Christian Spitzlay
e in a situation where one of the entities in the original system is linked to itself. I’m haven’t finished analysing the problem yet but I wondered whether there was an easy way to rule out that cycle detection is causing it. Best regards, Christian Spitzlay > christian.spitz...@bio

Re: Streaming Expression intersect() behaviour

2018-06-07 Thread Christian Spitzlay
tand the docs of the intersect decorator or have I come across a bug? Best regards, Christian Spitzlay > Am 06.06.2018 um 10:18 schrieb Christian Spitzlay > : > > Hi, > > I don’t seem to get the behaviour of the intersect() stream decorator. > I only ever get one doc from

Re: Streaming Expression intersect() behaviour

2018-06-07 Thread Christian Spitzlay
> Am 07.06.2018 um 11:34 schrieb Christian Spitzlay > : > > intersect( > cartesianProduct(tuple(fieldA=array(a,b,c,c)), fieldA, productSort="fieldA > asc"), > cartesianProduct(tuple(fieldB=array(a,c)), fieldB, productSort="fieldB asc"), > on=&q

Re: Streaming Expression intersect() behaviour

2018-06-08 Thread Christian Spitzlay
the fields are being transposed with intersect > function's "on" fields. The same issue was happening with joins and may > have been resolved. I'll do little more research into this. Thanks for your work on this! Best regards Christian Spitzlay > Joel Bernst

Re: Streaming Expression intersect() behaviour

2018-06-08 Thread Christian Spitzlay
e for this. > > > > > Joel Bernstein > http://joelsolr.blogspot.com/ > > On Fri, Jun 8, 2018 at 3:41 AM, Christian Spitzlay < > christian.spitz...@biologis.com> wrote: > >> Hi, >> >> >>> Am 08.06.2018 um 03:42 schrieb Joel Bern

Exception when processing streaming expression

2018-06-13 Thread Christian Spitzlay
Hi, I am seeing a lot of (reproducible) exceptions in my solr log file when I execute streaming expressions: o.a.s.s.HttpSolrCall Unable to write response, client closed connection or we are shutting down org.eclipse.jetty.io.EofException at org.eclipse.jetty.io.ChannelEndPoint.flush(Ch

Re: Exception when processing streaming expression

2018-06-14 Thread Christian Spitzlay
results the exception doesn’t occur either. BTW: Do you know of any tool for formatting and/or syntax highlighting these expressions? Christian Spitzlay > Am 13.06.2018 um 23:02 schrieb Joel Bernstein : > > Can your provide some example expressions that are causing these except

Streaming Expressions: Merge array values? Inverse of cartesianProduct()

2018-06-14 Thread Christian Spitzlay
Hi, is there a way to merge array values? Something that transforms { "k1": "1", "k2": ["a", "b"] }, { "k1": "2", "k2": ["c", "d"] }, { "k1": "2", "k2": ["e", "f"] } into { "k1": "1", "k2": ["a", "b"] }, { "k1": "2", "k2": ["c", "d", "e", "f"] } And an inverse of ca

Re: Exception when processing streaming expression

2018-06-14 Thread Christian Spitzlay
#x27;t the receiving end wait for it to appear? Due to an incredibly low timeout used internally? Christian Spitzlay > Am 14.06.2018 um 19:18 schrieb Susmit : > > Hi, > This may be expected if one of the streams is closed early - does not reach > to EOF tuple > > Sent

Re: Streaming Expressions: Merge array values? Inverse of cartesianProduct()

2018-06-15 Thread Christian Spitzlay
quot;2", "k2": "b" } ] }, { "EOF": true, "RESPONSE_TIME": 0 } ] } } It adds a field "group" that contains an array of the unchanged input documents with the sa

Re: Exception when processing streaming expression

2018-06-15 Thread Christian Spitzlay
that are expected." From: https://wiki.apache.org/solr/CommonQueryParameters#rows Christian Spitzlay

Re: Streaming Expressions: Merge array values? Inverse of cartesianProduct()

2018-06-19 Thread Christian Spitzlay
ion that does this. If you want to > create a ticket we can work through exactly how the operation would work. > I'll create an issue tonight at the latest. Should we take further discussions off the user list or is it acceptable here? Christian Spitzlay -- Christian Spit

Re: Streaming Expressions: Merge array values? Inverse of cartesianProduct()

2018-06-19 Thread Christian Spitzlay
Ok. I'm about to create the issue and I have a draft version of what I had in mind in a branch on github. Christian Spitzlay > Am 19.06.2018 um 15:27 schrieb Joel Bernstein : > > Let's move the discussion to the jira ticket. > > Joel Bernstein > http://joelso

Re: Streaming Expressions: Merge array values? Inverse of cartesianProduct()

2018-06-19 Thread Christian Spitzlay
Here it is: https://issues.apache.org/jira/browse/SOLR-12499 -- Christian Spitzlay Diplom-Physiker, Senior Software-Entwickler Tel: +49 69 / 348739116 E-Mail: christian.spitz...@biologis.com bio.logis Genetic Information Management GmbH Altenhöferallee 3 60438 Frankfurt am Main

Re: Preferred PHP Client Library

2018-07-17 Thread Christian Spitzlay
nces but here is the Solarium project's description in their own words: https://solarium.readthedocs.io/en/latest/ Solarium is under active development. They recently added support for Solr cloud streaming expressions and for the JSON Facet API (the latter is in the beta version). Best r

Re: Exception when processing streaming expression

2018-07-24 Thread Christian Spitzlay
Hi, > Am 15.06.2018 um 14:54 schrieb Christian Spitzlay > : > > >> Am 15.06.2018 um 01:23 schrieb Joel Bernstein : >> >> We have to check the behavior of the innerJoin. I suspect that its closing >> the second stream when the first stream his finished. Th

Re: How do I add my own Streaming Expressions?

2019-11-18 Thread Christian Spitzlay
al unless explicitly stated otherwise, regardless of > whether attachments are marked as such. -- Christian Spitzlay Senior Software-Entwickler bio.logis Genetic Information Management GmbH Zentrale: Olof-Palme-Str. 15 D-60439 Frankfurt am Main T: +49 69 348 739 116 christian.spitz...@b

Re: How to tell which core was used based on Json or XML response from Solr

2019-11-25 Thread Christian Spitzlay
>>>> the receiving javascript wouldn't be able to read that variable unless >> im >>>> missing something. >>>> >>>> >>> There's another function on_data that is being called by the url, which >>> does not have any ind

Re: How to tell which core was used based on Json or XML response from Solr

2019-11-25 Thread Christian Spitzlay
I hope that makes sense? > > Thanks for your tip! > > Our pages are a combo of jquery, javascript, and perl. -- Christian Spitzlay Senior Software-Entwickler bio.logis Genetic Information Management GmbH Zentrale: Olof-Palme-Str. 15 D-60439 Frankfurt am Main T: +49 69

Re: How to control the number of grouped results [DRUPAL]

2019-12-03 Thread Christian Spitzlay
r@lucene.apache.org >> Subject: Re: How to control the number of grouped results [DRUPAL] >> >> Where would I put this parameter ? >> >> >> -- >> Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html -- Christian Spitzlay Senior Software-Entwickle