Re: FAcet with values are displayes in output

2013-09-19 Thread Upayavira
q=country:[* TO *] will find all docs that have a value in a field. However, it seems you have a space, which *is* a value. I think Eric is right - track down that record and fix the data. Upayavira On Wed, Sep 18, 2013, at 09:23 AM, Prasi S wrote: How to filter them in the query itself?

Re: Memory Using In Faceted Search (UnInvertedField's)

2013-09-19 Thread Anton M
I ran some load tests and working memory usage was always about 10-11 Gb (very slowly raising - that should be cause of query cache being filled in, I think). 6 Gb was always heap size while 4-5 Gb was reported as shareable memory. First, I became afraid that Solr could continue taking memory up

Migrating from Endeca

2013-09-19 Thread Gareth Poulton
Hi, A customer wants us to move their entire enterprise platform - of which one of the many components is Oracle Endeca - to open source. However, customers being the way they are, they don't want to have to give up any of the features they currently use, the most prominent of which are user

solr atomic updates stored=true, and copyField limitation

2013-09-19 Thread Tanguy Moal
Hello, I'm using solr 4.4. I have a solr core with a schema defining a bunch of different fields, and among them, a date field: - date: indexed and stored // the date used at search time In practice it's a TrieDateField but I think that's not relevant for the concern. It also has a multi

Re: Migrating from Endeca

2013-09-19 Thread Jack Krupansky
Take a look at LucidWorks Enterprise. It has a graphical UI. But if you must meet all of the listed requirements and Lucid doesn't meet all of them, then... you will have to develop everything on your own. Or, maybe Lucid might be interested in partnering with you to allow your to add

How to highlight multiple words in document

2013-09-19 Thread bramha
Hi All, I want to highlight multiple words in document. e.g If I search for Rework AND Build then after opening the document returned by search result should highlight both words(Rework as well as Build) in that document. Currently I am adding word to highlight in highlight field. In this

solr4.4 admin page show loading

2013-09-19 Thread Micheal Chao
hi, I have installed solr4.4 on tomcat7.0. the problem is I can't see the solr admin page, it's always show loading. I can't find any error in tomcat logs, and I can send search request, and get the result. what can I do? please help me, thank you very much. -- View this message in context:

Re: Solrcloud - adding a node as a replica?

2013-09-19 Thread didier deshommes
Thanks Furkan, That's exactly what I was looking for. On Wed, Sep 18, 2013 at 4:21 PM, Furkan KAMACI furkankam...@gmail.comwrote: Are yoh looking for that: http://lucene.472066.n3.nabble.com/SOLR-Cloud-Collection-Management-quesiotn-td4063305.html 18 Eylül 2013 Çarşamba tarihinde didier

Re: Solrcloud - adding a node as a replica?

2013-09-19 Thread Furkan KAMACI
Do not hesitate to ask questions if you have any problems about it. 2013/9/19 didier deshommes dfdes...@gmail.com Thanks Furkan, That's exactly what I was looking for. On Wed, Sep 18, 2013 at 4:21 PM, Furkan KAMACI furkankam...@gmail.com wrote: Are yoh looking for that:

I can't open the admin page, it's always loading.

2013-09-19 Thread Micheal Chao
Hi, I followed the tutoral to download solr4.4 and unzip it, and then i started jetty. i can post data and search correctly, but when i try to open admin page, it's always show loading. and then i setup solr on tomcat 7.0, but it's the same. what's wrong? please help, thanks. -- View this

SolrCloud setup - any advice?

2013-09-19 Thread Neil Prosser
Apologies for the giant email. Hopefully it makes sense. We've been trying out SolrCloud to solve some scalability issues with our current setup and have run into problems. I'd like to describe our current setup, our queries and the sort of load we see and am hoping someone might be able to spot

Problem with stopword

2013-09-19 Thread mpcmarcos
Hello everybody, I have a problem with stopwords, I have an index with some stopwords and when I search by one of them only, solr dont select any document. ¿How can I fix this? I need all the documents. Example: *Stopwords*: hello, goodbye *Query*: http://localhost:8893/solr/select?q=hello

Indexing several sub-fields in one solr field

2013-09-19 Thread jimmy nguyen
Hello, I'd like to index into Solr (4.4.0) documents that I previously annotated with GATE (7.1). I use Behemoth to be able to run my GATE application on a corpus of documents on Hadoop, and then Behemoth allows me to directly send my annotated documents to solr. But my question is not about the

decimal numeric queries are too slow in solr

2013-09-19 Thread Karan jindal
Hi all, I am using solr 3.4 and index size is around 250gb. the issue that I am facing is the queries which have a decimal number in it is taking long time to execute. I am using dismax query handler with *qf* (15 fields) and *pf * (4 fields) and a boost function on time. Also I am using

Question on ICUFoldingFilterFactory

2013-09-19 Thread Nemani, Raj
Hello, I was wondering if anybody who has experience with ICUFoldingFilterFactory can help out with the following issue. Thank you so much in advance. Raj -- Problem: When a document is created/updated, the value's casing is

RE: Solr 4.4.0: Plugin init failure for [schema.xml] analyzer/tokenizer

2013-09-19 Thread Chris Hostetter
Ok, first off -- let's clear up some confusion... 1) except for needing to put hte logging jars in your servlet container's to level classpath, you should not be putting any jars that come from solr or lucene, or any jars for custom plugins you have written in tomcat/lib 2) you should never

Re: SolrCloud setup - any advice?

2013-09-19 Thread Shreejay Nair
Hi Neil, Although you haven't mentioned it, just wanted to confirm - do you have soft commits enabled? Also what's the version of solr you are using for the solr cloud setup? 4.0.0 had lots of memory and zk related issues. What's the warmup time for your caches? Have you tried disabling the

Will Solr work with a mapped drive?

2013-09-19 Thread johnmunir
Hi, I'm having this same problem as described here: http://stackoverflow.com/questions/17708163/absolute-paths-in-solr-xml-configuration-using-tomcat6-on-windows Any one knows if this is a limitation of Solr or not? I searched the web, nothing came up. Thanks!!! -- MJ

Re: Indexing several sub-fields in one solr field

2013-09-19 Thread Jack Krupansky
There is no such fieldType attribute as subSuffix. Solr is just complaining about extraneous, junk attributes. Delete the crap. -- Jack Krupansky -Original Message- From: jimmy nguyen Sent: Thursday, September 19, 2013 12:43 PM To: solr-user@lucene.apache.org Subject: Indexing

Re: Indexing several sub-fields in one solr field

2013-09-19 Thread jimmy nguyen
Hello, thanks for the answer. Sorry, I actually meant attribute subFieldSuffix. So, in order to be able to index several features in one solr field, should I program a new Java class inheriting AbstractSubTypeFieldType ? Or is there another way to do it ? Thanks ! Jim On Thu, Sep 19, 2013 at

Re: SOLR-5250

2013-09-19 Thread Chris Hostetter
: widget, BUT while researching for this message, I've learned about the : important difference between a text field and a string field in solr and : it appears that by default, the Drupal apachesolr module indexes text : fields as text and not strings. Now I just need to figure out how to :

Re: I can't open the admin page, it's always loading.

2013-09-19 Thread Furkan KAMACI
Could you paste your jetty logs of when you try to open admin page. 19 Eylül 2013 Perşembe tarihinde Micheal Chao fisher030...@hotmail.com adlı kullanıcı şöyle yazdı: Hi, I followed the tutoral to download solr4.4 and unzip it, and then i started jetty. i can post data and search correctly, but

Re: Problem with stopword

2013-09-19 Thread Furkan KAMACI
Firstly, you houl read here: https://cwiki.apache.org/confluence/display/solr/Running+Your+Analyzer Secondly, when you write a quey stop word are filtered from your query if you use stop word analyzer so there will not be anything else to search. 19 Eylül 2013 Perşembe tarihinde mpcmarcos

SOLR-5250

2013-09-19 Thread John Brandenburg
Greetings, This is a follow up to https://issues.apache.org/jira/browse/SOLR-5250 where I reported a possible issue with sorting content which contains hyphens. Hoss Man suggested that I likely have a misconfiguration on my field settings and that I send a message to this list. I am using

Re: I can't open the admin page, it's always loading.

2013-09-19 Thread Chris Hostetter
: Hi, I followed the tutoral to download solr4.4 and unzip it, and then i : started jetty. i can post data and search correctly, but when i try to open : admin page, it's always show loading. the admin UI is entirely rendered by client side javascript in your browser -- so the most important

Re: SolrCloud setup - any advice?

2013-09-19 Thread Otis Gospodnetic
Hi Neil, Consider using G1 instead. See http://blog.sematext.com/?s=g1 If that doesn't help, we can play with various JVM parameters. The latest version of SPM for Solr exposes information about sizes and utilization of JVM memory pools, which may help you understand which JVM params you need

Re: Unknown attribute id in add:allowDups

2013-09-19 Thread Chris Hostetter
: I'm working with the Pecl package, with Solr 4.3.1. I have a doc defined in my ... : $client = new SolrClient($options); : $doc = new SolrInputDocument(); : $doc-addField('id', 12345); : $doc-addField('description', 'This is the content of the doc'); : $updateResponse =

Re: solrcloud shards backup/restoration

2013-09-19 Thread Aditya Sakhuja
Hi, Sorry for the late followup on this. Let me put in more details here. *The problem:* Cannot successfully restore back the index backed up with '/replication?command=backup'. The backup was generated as * snapshot.mmdd* *My setup and steps:* * * 6 solrcloud instances 7 zookeepers

[ANN] Lux Release 0.10.5

2013-09-19 Thread Michael Sokolov
I'm pleased to announce the release of the XML search engine Lux, version 0.10.5. There has been a lot of progress made since our last announced release, which was 0.9.1. Some highlights: The app server now provides full access to HTTP request data and control of HTTP responses. We've

Re: I can't open the admin page, it's always loading.

2013-09-19 Thread Alexandre Rafalovitch
You may have some over-eager Ad Blockers! Check the network panel of Firebug/Chrome console/whatever you have. See if some resources are not loaded. Regards, Alex. Personal website: http://www.outerthoughts.com/ LinkedIn: http://www.linkedin.com/in/alexandrerafalovitch - Time is the quality

Re: Question on ICUFoldingFilterFactory

2013-09-19 Thread Alexandre Rafalovitch
What do you mean by output? Are you looking at fields in returned documents? In which case you should see original stored field. Or are you - for example - looking at facet/group values which are using tokenized post-processed results? Regards, Alex. Personal website:

Re: Memory Using In Faceted Search (UnInvertedField's)

2013-09-19 Thread Shawn Heisey
On 9/19/2013 3:14 AM, Anton M wrote: Shawn, I had swap file growing (up to 50-60%) and working while load tests ran. Did you configure 'swapiness' on your Linux box (set it to 0 earlier, maybe)? If not, my Windows OS could be cause of that difference. The vm.swappiness sysctl setting is 1. I

Re: I can't open the admin page, it's always loading.

2013-09-19 Thread Micheal Chao
I'm using windows7 and IE8, i debuged the script, it showed error: var d3_formatPrefixes = [y,z,a,f,p,n,μ,m,,k,M,G,T,P,E,Z,Y].map(d3_formatPrefix); can't find object's method. so i changed my browse, and it works. thanks a lot. is this a bug of solr? -- View this message in context:

JVM Crash using solr 4.4 on Centos

2013-09-19 Thread Oak McIlwain
I have solr 4.4 running on tomcat 7 on my local development environment which is ubuntu based and it works fine (Querying, Posting Documents, Data Import etc.) I am trying to move into a staging environment which is Centos based (still using tomcat 7 and solr 4.4 however when attempting to post

Re: I can't open the admin page, it's always loading.

2013-09-19 Thread Alexandre Rafalovitch
I think IE8 itself might the bug! :-) Many popular libraries have dropped =IE7 support completely and are phasing out IE8 as well. Looks like D3 - a visualization library used for some of Admin stuff - is doing that as well. Though I thought Admin javascript loading was more robust than that.

RE: JVM Crash using solr 4.4 on Centos

2013-09-19 Thread Michael Ryan
This is a known bug in that JDK version. Upgrade to a newer version of JDK 7 (any build within the last two years or so should be fine). If that's not possible for you, you can add -XX:-UseLoopPredicate as a command line option to java to work around this. -Michael -Original Message-

Re: solrcloud shards backup/restoration

2013-09-19 Thread Aditya Sakhuja
How does one recover from an index corruption ? That's what I am trying to eventually tackle here. Thanks Aditya On Thursday, September 19, 2013, Aditya Sakhuja wrote: Hi, Sorry for the late followup on this. Let me put in more details here. *The problem:* Cannot successfully restore

Re: Migrating from Endeca

2013-09-19 Thread Alexandre Rafalovitch
I think Hue ( http://cloudera.github.io/hue/ ) which Cloudera uses for Solr search among other things has some of UI customization. And it is open-source, so would make for much better base. Regards, Alex. Personal website: http://www.outerthoughts.com/ LinkedIn: