Hi Anil,
It is weird that your query retrieves docID=2, it has not Facebook at all.
What query parser are you using?
Please try unary operators and without using quotes.
q={!lucene} +customers:facebook -customers:google
If I am not wrong above query should do the trick.
But I didn't understan
Thanks Erick for your response.
I checked with distrib=false. I tried with a smaller result set.
*Search*
E.g. text_field:term AND f:val1
Number of matches : 49
*Facet:* (distrib=true)
text_field:term AND f:val1
*Result*
Shard1 :
47
*Facet: *(distrib=false)
text_field:term AND f:val1&distrib=f
Hi Tomás,
Thank you for your email.
You said "have big caches or request big pages (e.g. 100k docs)"...
Does a fq cache all the potential results, or only the ones the query
returns?
e.g.: select?q=*:*&fq=bPublic:true&rows=10
=> with this query, if I have 60 millions of public documents, would
Hi Ahmet,
Thanks for the response. Following are sample documents.
Doc 1 :
id : 1
customers : ["facebook', "google"]
issueId:1231
description: Some description
Doc2 :
id : 2
customers : ["twitter", "google"]
issueId:1231
description: Some description
Doc3 :
id : 2
customers : ["facebook', "a
Hi Mark,
You could do something like this:
_query_:{!dismax qf='field1' mm='100%' v=$qq}
OR
_query_:{!dismax qf='field2' mm='100%' v=$qq}
OR
_query_:{!dismax qf='field3' mm='100%' v=$qq}
https://cwiki.apache.org/confluence/display/solr/Local+Parameters+in+Queries
Ahmet
On Wednesday, May 4
hi shawn, thx for your reply.
i've try to remove
and yes it works when i installing casebox but i don't know where is the
change on casebox when i'm not include that class.
i will try to use a version of casebox before 15th march like your suggest.
Thx again for your help shawn.
:cheers
O
Hi,
On further checking cld identify that *blue *is indeed appearing in one of
the qf fields.My bad!
Cld someone pls help me with the 2nd question.
Thanks!
Mark.
On Tue, May 3, 2016 at 8:03 PM, Mark Robinson
wrote:
> Hi,
>
> I made a typo err in the prev mail for my first question when I list
Thanks Joel! :)
On Tue, 3 May 2016, 23:37 Joel Bernstein, wrote:
> Ryan, there is a patch (for the master branch) up on SOLR-9059 that
> resolves the issue. This will be in 6.1 and 6.0.1 if there is one. Thanks
> for the bug report!
>
> Joel Bernstein
> http://joelsolr.blogspot.com/
>
> On Tue,
You could use some memory analyzer tools (e.g. jmap), that could give you a
hint. But if you are migrating, I'd start to see if you changed something
from the previous version, including jvm settings, schema/solrconfig.
If nothing is different, I'd try to identify which feature is consuming
more me
Hi,
I made a typo err in the prev mail for my first question when I listed the
query terms.
Let me re-type both questions here once again pls.
Sorry for any inconvenience.
1.
My understanding of the mm parameter related to edismax is that,
if mm=100%, only if ALL my query terms appear across any
Hmm, I'd be interested what you get if you restrict your
queries to individual shards using &distrib=false. This
will go to the individual shard you address and no others.
Does the facet count change in those circumstances?
Best,
Erick
On Tue, May 3, 2016 at 4:48 AM, Modassar Ather wrote:
> I t
Not a typo any more, Shawn fixed it today.
On Tue, May 3, 2016 at 1:34 PM, Jack Krupansky wrote:
> Yeah, that's a typo. The same typo is in the official Solr Reference Guide:
> https://cwiki.apache.org/confluence/display/solr/Putting+the+Pieces+Together
>
> [ATTN: Solr Ref Guide Team!]
>
>
> -
Hoss - I'm guessing this is all in the install script that gets created
when you run that command (can't remember it) on the tar.gz file...
In other words, Yunee can edit that file, find those variables (like
SOLR_SERVICE) and change them from what they're set to by default to
whatever he wants...
Sorry Eric.
I will check and raise it under SOLR project.
Thanks!
Mark.
On Mon, May 2, 2016 at 11:43 PM, Erick Erickson
wrote:
> Mark:
>
> KYLIN-1644? This should be SOLR-. I suspect you entered the JIRA
> in the wrong Apache project.
>
>
> Erick
>
> On Mon, May 2, 2016 at 8:05 PM, Mark
: I have a question for installing solr server. Using '
: install_solr_service.sh' with option -d , the solr home directory can be
: set. But the default log directory is under $SOLR_HOME/logs.
:
: Is it possible to specify the logs directory separately from solr home
directory during installa
Hi,
1.
My understanding of the mm parameter related to edismax is that,
if mm=100%, only if ALL my query terms appear across any of the qf fields
will I get back
documents ... ie all the terms *need not be present in one single field* ..
they just need to be present across any of the fields in my
That's correct.
But I want to separate solr home directory and log directory.
For example, solr_home = /server/solr
solr_logs = /var/solr/logs
-Original Message-
From: John Bickerstaff [mailto:j...@johnbickerstaff.com]
Sent: Tuesday, May 3, 2016 6:16 PM
To: solr-user@lucene.apache.org
S
I think you should be able to change $SOLR_HOME to any valid path.
For example: /var/logs/solr_logs
On Tue, May 3, 2016 at 4:02 PM, Yunee Lee wrote:
> Hi, solr experts.
>
> I have a question for installing solr server.
> Using ' install_solr_service.sh' with option -d , the solr home directory
Hi, solr experts.
I have a question for installing solr server.
Using ' install_solr_service.sh' with option -d , the solr home directory can
be set. But the default log directory is under $SOLR_HOME/logs.
Is it possible to specify the logs directory separately from solr home
directory during
Yeah, that's a typo. The same typo is in the official Solr Reference Guide:
https://cwiki.apache.org/confluence/display/solr/Putting+the+Pieces+Together
[ATTN: Solr Ref Guide Team!]
-- Jack Krupansky
On Tue, May 3, 2016 at 4:14 PM, John Bickerstaff
wrote:
> I'm assuming it's another "class" o
You'll note that the "name" of the field in schema.xml is "string" and the
class is solr.StrField.
Easy to get confused when you're writing something up quickly... in a sense
the "string" field IS a solr.StrField
... but I could be wrong of course.
On Tue, May 3, 2016 at 2:14 PM, John Bickerst
I'm assuming it's another "class" or data type that someone built - but I'm
afraid I don't know any more than that.
An alternative possibility (supported by at least one of the links on that
page you linked) is that it's just a typo -- people typing quickly and
forgetting the exact (truncated) spe
Thanks John.
Yes, the out-of-the-box schema.xml does not have solr.StringField.
However, a number of Solr pages on the web mention solr.StringField [1] and
thus I'm not sure if that's a typo, a real thing and such it is missing
from the official Solr wiki's.
Steve
[1] https://wiki.apache.org/sol
My default schema.xml does not have an entry for solr.StringField so I
can't tell you what that one does.
If you look for solr.StrField in the schema.xml file, you'll get some idea
of how it's defined. The default setting is for it not to be analyzed.
On Tue, May 3, 2016 at 10:16 AM, Steven Whit
I'm really confused by this
bq: I am proposing that the Collection API be consistent...
How can it? The collections API simply allows collection manipulation
(creation, deletion and the like) through an HTTP call. Where do you
think it _can_ get any intelligence about the cluster state? There's
n
I am proposing that the Collection API be consistent with SolrJ
(CloudSolrClient).
SolrJ's design philosophy uses the list of zookeeper addresses to gather cloud
information,
and then intelligently sends the actual request to the single solr node that is
best able to serve it.
This information i
Hi Everyone,
Is solr.StrField and solr.StringField the same thing?
Thanks in advanced!
Steve
Yes should be, as it is the Tika extract handler that does the extracting
of the content for indexing.
Thank you.
Regards,
Edwin
On 3 May 2016 at 19:12, Alexandre Rafalovitch wrote:
> This is an extract handler, right?
>
> If so, this is a question better for the Apache Tina list. That's what
Ryan, there is a patch (for the master branch) up on SOLR-9059 that
resolves the issue. This will be in 6.1 and 6.0.1 if there is one. Thanks
for the bug report!
Joel Bernstein
http://joelsolr.blogspot.com/
On Tue, May 3, 2016 at 10:41 AM, Joel Bernstein wrote:
> I opened SOLR-9059.
>
> Joel Be
On 5/2/2016 2:59 AM, tkg_cangkul wrote:
> hi i wanna asking a question about using
>
>
> BlockJoinFacetComponent
>
> in solr 4. how can i use that library on solr 4.10.4
> i want to install casebox with solr 4.10.4 but i have this error.
>
>
> when i check in solr-core-4.10.4.jar there is no
On 5/2/2016 5:16 AM, Salman Ansari wrote:
> After several trials, it did start Solr on both machines but *non of the
> previous collections came back normally.* When I look at the admin page, it
> shows errors as follows
>
> *[Collection_name]_shard2_replica2:*
> org.apache.solr.common.SolrExceptio
Welcome Sheece,
I’ve added you to the ContributorsGroup.
--
Steve
www.lucidworks.com
> On May 3, 2016, at 10:03 AM, Syed Gardezi wrote:
>
> Hello,
> I am a Master student as part of Free and Open Source Software
> Development COMP8440 - http://programsandcourses.anu.edu.au/course/COMP8440
Hello,
I am a Master student as part of Free and Open Source Software Development
COMP8440 - http://programsandcourses.anu.edu.au/course/COMP8440 at Australian
National University. I have selected http://wiki.apache.org/solr/ to contribute
too. Kindly add me too ContributorsGroup. Thank you
I opened SOLR-9059.
Joel Bernstein
http://joelsolr.blogspot.com/
On Tue, May 3, 2016 at 10:31 AM, Joel Bernstein wrote:
> What I believe is happening is that the core is closing on the reload,
> which is triggering the closeHook and shutting down all the connections in
> SolrClientCache.
>
> Wh
What I believe is happening is that the core is closing on the reload,
which is triggering the closeHook and shutting down all the connections in
SolrClientCache.
When the core reopens the connections are all still closed because the
SolrClientCache is instantiated statically with the creation of
Can you provide us example documents? Which you want to match which you don't?
On Tuesday, May 3, 2016 3:15 PM, Anil wrote:
Any inputs please ?
On 2 May 2016 at 18:18, Anil wrote:
> HI,
>
> i have created a document with multi valued fields.
>
> Eg :
> An issue is impacting multiple custome
Please explain more clearly what problem you're actually
facing. It _sounds_ like you're indexing data to Solr then
trying to search it and being unsuccessful. This is almost
always the result of a failure to commit after indexing.
Best,
Erick
On Mon, May 2, 2016 at 3:29 AM, SRINI SOLR wrote:
>
If Solr is killed un-gracefully, " it can leave the lock files
in the index directory and when Solr comes back up
it thinks some other Solr process is writing the files
and refuses to allow _this_ Solr process to write to
those files
Probably this:
bq: machines faced a forced
restart to install W
Not quite sure. How is the field type defined? What
is the result of adding &debug=true to the query? Have
you looked at the actual terms indexed via the
admin UI/schema browser? Have you looked at the
admin/analysis page to see how the data is parsed by
the fieldType?
If this is a tokenized field
I'll look into this today.
Joel Bernstein
http://joelsolr.blogspot.com/
On Tue, May 3, 2016 at 9:22 AM, Kevin Risden
wrote:
> What I think is happening is that since the CloudSolrClient is from the
> SolrCache and the collection was reloaded. zkStateReader is actually null
> since there was no
What I think is happening is that since the CloudSolrClient is from the
SolrCache and the collection was reloaded. zkStateReader is actually null
since there was no cloudSolrClient.connect() call after the reload. I think
that would cause the NPE on anything that uses the zkStateReader like
getClus
Hi Georg,
So obvious I totally forgot about that option.
Thanks.
Jan.
On 2 May 2016 at 11:15, Georg Sorst wrote:
> Hi Jan,
>
> have you tried Solr's debug output? ie. add
> "...&debug=true&debug.explain.structured=true" to your query. This should
> answer your question.
>
> Best,
> Georg
hi,
Please share your query ?
I think you should increase maxBooleanClauses from solrconfig file.
as below
1024
--
View this message in context:
http://lucene.472066.n3.nabble.com/Query-String-Limit-tp4274161p4274236.html
Sent from the Solr - User mailing list archive at Nabble.com.
Any inputs please ?
On 2 May 2016 at 18:18, Anil wrote:
> HI,
>
> i have created a document with multi valued fields.
>
> Eg :
> An issue is impacting multiple customers, products, versions etc.
>
> In my issue document, i have created customers, products, versions as
> multi valued fields.
>
>
I tried to reproduce the same issue with a field of following type but
could not.
Please share your inputs.
Best,
Modassar
On Tue, May 3, 2016 at 10:32 AM, Modassar Ather
wrote:
> Hi,
>
> Kindly share your inputs on this issue.
>
> Thanks,
> Modassar
>
> On Mon, May 2, 2016 at 3:53 PM, Modass
This is an extract handler, right?
If so, this is a question better for the Apache Tina list. That's what
doing the parsing.
Regards,
Alex
On 3 May 2016 7:53 pm, "Zheng Lin Edwin Yeo" wrote:
> Hi,
>
> I would like to find out, if the presence of inline images in EML files
> will slow down t
Hi,
I would like to find out, if the presence of inline images in EML files
will slow down the indexing speed significantly?
Even though the content of the EML files are in Plain Text instead of HTML.
but I still found that the indexing performance is not up to expectation
yet. Average speed whic
Hi,
Post method should do the trick.
Can you give an example of your query string, may be there is a way to shorten
it?
ahmet
On Tuesday, May 3, 2016 9:30 AM, Prasanna S. Dhakephalkar
wrote:
Hi,
I have a solr 5.3.1 standalone installation.
When a query is fired on the browser,
If th
The documentation link I gave has a bunch of examples. What is the specific
difficulty?
On 3 May 2016 4:30 pm, "kavurupavan" wrote:
> Hi Alex,
>
> Please provide any example for comparsion in solr.
>
> Regards,
> Pavan.
>
>
>
> --
> View this message in context:
> http://lucene.472066.n3.nabble.c
49 matches
Mail list logo