Re: Even after indexing a mysql table,in solr am not able to retreive data after querying

2012-10-18 Thread Chandan Tamrakar
status shows that all your 4 records were not indexed. 4 On Fri, Oct 19, 2012 at 12:22 PM, Romita Saha wrote: > Hi, > > Even after indexing a mysql table,in solr am not able to retrieve data > after querying. Here is the status after i run > http://localhost:8983/solr/db/dataimport > > Indexin

Re: Even after indexing a mysql table,in solr am not able to retreive data after querying

2012-10-18 Thread Gora Mohanty
On 19 October 2012 12:07, Romita Saha wrote: [...] > My data-config file is : > > query="SELECT id FROM camera"> > > > > > > > The related schema.xml file is : > > required="true"/> > required="true"/> Your "data" field

Data Writing Performance of Solr 4.0

2012-10-18 Thread higashihara_hdk
Hello everyone. I have two questions. I am considering using Solr 4.0 to perform full searches on the data output in real-time by a Storm cluster (http://storm-project.net/). 1. In particular, I'm concerned whether Solr would be able to keep up with the 2000-message-per-second throughput of the S

Re: Solr 4.0 Master slave configuration in JBOSS 5.1.2

2012-10-18 Thread adityab
Can you please share some information on Setting up Solr 4.0 as a singleCore. I tried doing it and keep seeing ClassNotFound Exception for KeywordTokenizerFactory. on server start up. I see the jar files being loaded in the logs but its unable to find the class. Can you let me know what jars re

Re: Solr 4.0 Master slave configuration in JBOSS 5.1.2

2012-10-18 Thread adityab
Can you please share some information on Setting up Solr 4.0 as a singleCore. I tried doing it and keep seeing ClassNotFound Exception for KeywordTokenizerFactory. on server start up. I see the jar files being loaded in the logs but its unable to find the class. Can you let me know what jars re

Fwd: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities

2012-10-18 Thread Dominik Siebel
Hi folks, I am currently migrating our Solr servers from a 4.0.0 nightly build (aprox. November 2011, which worked very well) to the newly released 4.0.0 and am running into some issues concerning the existing DataImportHandler configuratiions. Maybe you have an idea where I am going wrong here.

Query related to data source

2012-10-18 Thread Leena Jawale
Hi, I want to configure MS Aceess 2007 database with data source of lucidworks imagination. Is it possible to configure MS Access.? What should I need to do for that? Thanks & regards, Leena Jawale The contents of this e-mail and any attachment(s) may contain

Re: Building an enterprise quality search engine using Apache Solr

2012-10-18 Thread Alexandre Rafalovitch
This is the first time I hear of this project. Looks interesting, but Is it active? The integration FAQ seem to be talking about Solr 1.4, a bit out of date. Regards, Alex. Personal blog: http://blog.outerthoughts.com/ LinkedIn: http://www.linkedin.com/in/alexandrerafalovitch - Time is the qua

Re: SolrCloud - Configuring replicationFactor

2012-10-18 Thread balaji.gandhi
If I want 2 nodes, 2 shards and 2 replicas, is Collections API the only way to do it? Like this:- http://people.apache.org/~markrmiller/2shard4server2.jpg Balaji Gandhi, Senior Software Developer, Horizontal Platform Services Product Engineering | Apollo Group, Inc. 1225 W. Washington St. |

Re: SolrCloud is not returning all results

2012-10-18 Thread Mark Miller
Thanks, that's what I was wondering. You are running into https://issues.apache.org/jira/browse/SOLR-3933 - Mark On Wed, Oct 17, 2012 at 1:35 PM, Scott Carlson wrote: > I was adding the docs via command line, with a commit > > curl http://host:8983/solr/update/?commit=true -H "Content-Type:

Re: how solr4.0 and zookeeper run on weblogic

2012-10-18 Thread Mark Miller
You can also edit solr.xml so that the property is tomcat.port or solr.port or whatever you want as well. We ship a working, tested Jetty example though. - Mark On Wed, Oct 17, 2012 at 11:12 AM, Jan Høydahl wrote: > Did it work for you? You probably also have to set -Djetty.port=8080 in order

Re: KeeperException (NodeExists for /overseer): SolrCloud Multiple Collections - is it safe ignore these exceptions?

2012-10-18 Thread Mark Miller
Yes, those exceptions are fine. These are cases where we try to delete the node if it's there, but don't care if it's not there - things like that. In some of these cases, ZooKeeper logs things we can't stop, even though it's expected that sometimes we will try and remove nodes that are not there o

Re: Replication didn't work immediately after leader's SolrCore reload.

2012-10-18 Thread Mark Miller
This may be related to SOLR-3939. I'll try and get to testing it out without that fix. - Mark > On Thu, Oct 18, 2012 at 12:52 AM, Minoru Osuka wrote: >> Hi, >> >> I am facing replication problem. >> I had added a shard replica after the leader's core had been reloaded. I >> had expected to star

Re: Solr 4.0 simultaneous query problem

2012-10-18 Thread Otis Gospodnetic
Hi, Maybe you can narrow this down a little further. Are there some queries that are faster and some slower? Is there a pattern? Can you share examples of slow queries? Have you tried &debugQuery=true? These 3 shards is each of them on its own server or? Is the slow one always the one tha

Re: If bootstrap a new solrconfig file to zookeeper, do I need to restart all nodes?

2012-10-18 Thread Mark Miller
On Thu, Oct 18, 2012 at 11:45 AM, jimtronic wrote: > If I make a change to my solrconfig.xml file on one of > the servers and restart the server with the bootstrap_conf=true option, will > that change be sent to the other nodes? > Keep in mind, if you don't want to restart that server, you can us

Re: If bootstrap a new solrconfig file to zookeeper, do I need to restart all nodes?

2012-10-18 Thread Mark Miller
Reload: http://localhost:8983/solr/admin/collections?action=RELOAD&name=mycollection - Mark On Thu, Oct 18, 2012 at 12:55 PM, Tomás Fernández Löbbe wrote: > You can reload the collection. See > https://issues.apache.org/jira/browse/SOLR-3488 > > On Thu, Oct 18, 2012 at 12:45 PM, jimtronic wrot

Re: SolrCloud - Configuring replicationFactor

2012-10-18 Thread Mark Miller
On Thu, Oct 18, 2012 at 10:03 PM, balaji.gandhi wrote: > That was really helpful. I will try the Collections API. > > Is there a plan to support replication using solr.xml? The basic idea is that you only configure the core in solr.xml for the number of replicas that you want... If you have more

Re: SolrCloud - Configuring replicationFactor

2012-10-18 Thread balaji.gandhi
That was really helpful. I will try the Collections API. Is there a plan to support replication using solr.xml? Balaji Gandhi, Senior Software Developer, Horizontal Platform Services Product Engineering | Apollo Group, Inc. 1225 W. Washington St. | AZ23 | Tempe, AZ 85281 Phone: 602.713.241

Re: SolrCloud - Configuring replicationFactor

2012-10-18 Thread Mark Miller
It depends on how you create your collection. If you want to pre configure your collection in solr.xml (collection1 comes this way), then everything depends on what you set for numShards on startup. If you wanted to have one collection across 4 nodes with 2 shards, each shard with 1 leader and

Re: SolrCloud - Configuring replicationFactor

2012-10-18 Thread balaji.gandhi
Thanks for ur reply. "force the replicationFactor" - I meant can we say 2 replicas and 2 nodes, like the below:- http://people.apache.org/~markrmiller/2shard4server2.jpg Balaji Gandhi, Senior Software Developer, Horizontal Platform Services Product Engineering | Apollo Group, Inc. 1225 W. Was

Re: SolrCloud - Configuring replicationFactor

2012-10-18 Thread Tomás Fernández Löbbe
Hi Balaji, what do you mean with "force the replicationFactor"? There is not much documentation about the replicationFactor because it's very new, but see this previous discussion: http://find.searchhub.org/document/80b91db21b1befa6 and the comments here: https://issues.apache.org/jira/browse/SOLR-

Re: khugepaged runnging and eating 100% cpu.

2012-10-18 Thread Walter Underwood
khugepaged is not a part of Solr. http://lmgtfy.com/?q=khugepaged wunder On Oct 18, 2012, at 6:24 PM, Jason wrote: > Hi, > Some days ago, our solr server didn't respond repeatedly. > At that time khugepaged was running and eating 100% cpu. > We're running 5 physical solr servers which have same

khugepaged runnging and eating 100% cpu.

2012-10-18 Thread Jason
Hi, Some days ago, our solr server didn't respond repeatedly. At that time khugepaged was running and eating 100% cpu. We're running 5 physical solr servers which have same spec and configuration but different index. Defective server is not busier than the other servers. I don't know exactly what t

Re: What does _version_ field used for?

2012-10-18 Thread Shawn Heisey
On 10/18/2012 9:57 AM, Radim Kolar wrote: > You would only *need* the field if updateLog is turned on in your updateHandler. Solrcloud do not needs this? I think SolrCloud does use it. So that's another reason. Basically, I would recommend including it, even if you don't need it. It won't

Re: facet by "in the past" and "in the future"

2012-10-18 Thread Paul
That is perfect! Thanks. I never would have stumbled onto that. On Thu, Oct 18, 2012 at 5:40 PM, Michael Ryan wrote: > This should do it: > facet=true&facet.query=yourDateField:([* TO > NOW/DAY-1MILLI])&facet.query=yourDateField:([NOW/DAY TO *]) > > -Michael > > -Original Message- > From

RE: facet by "in the past" and "in the future"

2012-10-18 Thread Michael Ryan
This should do it: facet=true&facet.query=yourDateField:([* TO NOW/DAY-1MILLI])&facet.query=yourDateField:([NOW/DAY TO *]) -Michael -Original Message- From: Paul [mailto:p...@nines.org] Sent: Thursday, October 18, 2012 5:28 PM To: solr-user@lucene.apache.org Subject: facet by "in the pa

facet by "in the past" and "in the future"

2012-10-18 Thread Paul
I have some documents that contain a date field. I'd like to set up a facet that groups the dates in two buckets: 1) before today, 2) today and in the future. It seems like I should be using range faceting, but I don't see how to set up the parameters. Is there another way to get what I want? The

Re: Antw: Re: How to retrieve field contents as UTF-8 from Solr-Index with SolrJ

2012-10-18 Thread Jack Krupansky
Have you verified that the data was indexed properly (UTF-8 encoding)? Try a raw HTTP request using the browser or curl and see how that field looks in the resulting XML. -- Jack Krupansky -Original Message- From: Andreas Kahl Sent: Thursday, October 18, 2012 1:10 PM To: j...@basetec

Re: Indexing TrieDateField Using Lucene

2012-10-18 Thread Marcus
Brad, Please contact me at marcusattrueprobitydotcom...I would like to touch base with you. Thanks Marcus

Re: Building an enterprise quality search engine using Apache Solr

2012-10-18 Thread Jack Krupansky
Take a look at Apache ManifoldCF for crawling enterprise repositories such as SharePoint (as well as lighterweight web crawling and file system crawling). http://manifoldcf.apache.org/en_US/index.html -- Jack Krupansky -Original Message- From: Venky Naganathan Sent: Thursday, Octobe

Re: solr4.0 problem zkHost with multiple hosts throws out of range exception

2012-10-18 Thread Mark Miller
Sorry - the doc on this has never been clear I think. For the examples there is this default thing where it looks for localhost in your zk connect string. For real cases, you need to use -DzkRun={zk_address} This is how Solr figures out which zk address is for the local host so it can auto cre

Re: Solr 4.0.0 - index version and generation not changed after delete by query on master

2012-10-18 Thread Bill Au
Just discovered that the replication admin REST API reports the correct index version and generation: http://master_host:port/solr/replication?command=indexversion So is this a bug in the admin UI? Bill On Thu, Oct 18, 2012 at 11:34 AM, Bill Au wrote: > I just upgraded to Solr 4.0.0. I notic

Antw: Re: How to retrieve field contents as UTF-8 from Solr-Index with SolrJ

2012-10-18 Thread Andreas Kahl
Jack, Thanks for the hint, but we have already set URIEncoding="UTF-8" on all our tomcats, too. Regards Andreas >>> "Jack Krupansky" 18.10.12 17.11 Uhr >>> It may be that your container does not have UTF-8 enabled. For example, with Tomcat you need something like: Make sure your "Connecto

Re: If bootstrap a new solrconfig file to zookeeper, do I need to restart all nodes?

2012-10-18 Thread Tomás Fernández Löbbe
You can reload the collection. See https://issues.apache.org/jira/browse/SOLR-3488 On Thu, Oct 18, 2012 at 12:45 PM, jimtronic wrote: > I have a simple cluster of three servers and a dedicated zookeeper server > running separately. If I make a change to my solrconfig.xml file on one of > the ser

Re: What does _version_ field used for?

2012-10-18 Thread Radim Kolar
> You would only *need* the field if updateLog is turned on in your updateHandler. Solrcloud do not needs this?

If bootstrap a new solrconfig file to zookeeper, do I need to restart all nodes?

2012-10-18 Thread jimtronic
I have a simple cluster of three servers and a dedicated zookeeper server running separately. If I make a change to my solrconfig.xml file on one of the servers and restart the server with the bootstrap_conf=true option, will that change be sent to the other nodes? Or, will I have to log into eac

Solr 4.0.0 - index version and generation not changed after delete by query on master

2012-10-18 Thread Bill Au
I just upgraded to Solr 4.0.0. I noticed that after a delete by query, the index version, generation, and size remain unchanged on the master even though the documents have been deleted (num docs changed and those deleted documents no longer show up in query responses). But on the slave both the

Re: [External] solr4.0 problem zkHost with multiple hosts throws out of range exception

2012-10-18 Thread Pascal
Well, if i understand the embed solr ZK is not really useable with multiple instances spreaded across physical servers, so i've downloaded zookeeper and installed 3 instances on my servers and it works fine, you're right mixing zkHosts with multiple hosts and zkRun seems broken. Thanks, Pascal

Re: How to retrieve field contents as UTF-8 from Solr-Index with SolrJ

2012-10-18 Thread Jack Krupansky
It may be that your container does not have UTF-8 enabled. For example, with Tomcat you need something like: Make sure your "Connector" element has URIEncoding="UTF-8" (for Tomcat.) -- Jack Krupansky -Original Message- From: Andreas Kahl Sent: Thursday, October 18, 2012 10:53 AM To

How to retrieve field contents as UTF-8 from Solr-Index with SolrJ

2012-10-18 Thread Andreas Kahl
Hello everyone, we are trying to implement a simple Servlet querying a Solr 3.5-Index with SolrJ. The Query we send is an identifier in order to retrieve a single record. From the result we extract one field to return. This field contains an XML-Document with characters from several european and

Re: Query excluding empty values and some criteria

2012-10-18 Thread Jack Krupansky
A parenthesized pure negative query needs a "*:*" to apply the negative query against: (*:* -Industry:"Agriculture") OR (*:* -Industry:[* TO *]) or, (some terms -Industry:"Agriculture") OR (*:* -Industry:[* TO *])) -- Jack Krupansky -Original Message- From: marotosg Sent: Thursday,

Query excluding empty values and some criteria

2012-10-18 Thread marotosg
Hi. I am trying to do query where I need to include empty values and exclude some specific data. For instance my field name is "Industry" and my query looks like (-Industry:"Agriculture") OR (-Industry:[* TO *]) I want to get all empty values OR industries which are not Agriculture. This query do

Re: Config parameters to tweak for update performance

2012-10-18 Thread Robert Krüger
On Tue, Oct 16, 2012 at 4:13 PM, Shawn Heisey wrote: > On 10/16/2012 5:38 AM, Robert Krüger wrote: >> >> I use solr embedded in a desktop app and due to the consistency >> requirements of the application I have to commit rather often. Are >> there some best practices on how to optimize commit perf

Re: Sorl 4.0: ClassNotFoundException DataImportHandler

2012-10-18 Thread srinalluri
Thanks for your reply. Actually ClassNotFoundException is in tomcat logs. In 3.6, I don't put these jars in tomcat lib. In 4.0, should I put these jars in tomcat lib? thanks srini -- View this message in context: http://lucene.472066.n3.nabble.com/Sorl-4-0-ClassNotFoundException-DataImportHand

solr 4.0 error validation in web.xml

2012-10-18 Thread Miguel Ángel Martín
HI: I,m testing Solr 4 in eclipse and i uncommmnet solr home section in web xml but i had the XML validation error: *cvc-complex-type.2.4.a: Invalid content was found starting with element 'env-entry-type'. One of '{"http://java.sun.com/xml/ns/javaee":mapped-name, "http://java.sun.com/xml/**

Re: How can you do a fuzzy query with a single term that contains spaces

2012-10-18 Thread Gyozo Kudor
Wow, thanks didn't know that. On Thu, Oct 18, 2012 at 3:30 PM, Jack Krupansky wrote: > You can "escape" the space in a term using backslash (if using the > KeywordTokenizer, NOT for text tokenizers): > > name:Paul\ Morgan~0.5 > > Please note that in Solr 4.0 fuzzy queries are a lot faster but use

Re: How can you do a fuzzy query with a single term that contains spaces

2012-10-18 Thread Jack Krupansky
You can "escape" the space in a term using backslash (if using the KeywordTokenizer, NOT for text tokenizers): name:Paul\ Morgan~0.5 Please note that in Solr 4.0 fuzzy queries are a lot faster but use an integer "edit distance" rather than a float "minimum similarity" factor (as used in your

Re: Error: _version_field must exist in schema

2012-10-18 Thread Dotan Cohen
On Thu, Oct 18, 2012 at 1:06 PM, Erick Erickson wrote: > I've updated the schema.xml page, see > http://wiki.apache.org/solr/SchemaXml#Recommended_fields > Great, thanks! > Care to change the schema.xml file to warn about this too and > submit a patch? > If you are referring to the example sch

Re: New data not indexing, after data deletion.

2012-10-18 Thread Jack Krupansky
Please provide details on the timeout exception. What exactly do you see in the Solr log at the time of the timeouts? -- Jack Krupansky -Original Message- From: Cool Techi Sent: Thursday, October 18, 2012 3:20 AM To: solr-user@lucene.apache.org Subject: New data not indexing, after da

Re: [External] solr4.0 problem zkHost with multiple hosts throws out of range exception

2012-10-18 Thread Greene, Daniel [USA]
It looks like you are trying to connect to an external zk set of instance, as well as starting up the internal zk dev server. I would try it without the -zkrun - Reply message - From: "Pascal" To: "solr-user@lucene.apache.org" Subject: [External] solr4.0 problem zkHost with multip

RE: Regional indexing/retrieval

2012-10-18 Thread Markus Jelsma
Hi - combining two stemmers in one filter chain will lead to unexpected results. It's best to define to different text_ fields even though you'd like to avoid setting this up. It's not very hard. You can even use the LandID update processor to sent spanish text to a spanish field and there would

Re: solr search results threshold

2012-10-18 Thread Gora Mohanty
On 18 October 2012 12:58, linuxboy wrote: > > Hi , > > If I have search results around 100 results. I want to impose a threshold to > get results only from 20 to 30. > > So that I can show these ten results to the customer. Use /solr/select/?q=myquery&start=20&rows=10 Regards, Gora

Regional indexing/retrieval

2012-10-18 Thread blopez
Hi all, I'm facing some problems with my solr index due to I have English and Spanish terms mixed. Actually I'm using Porter stemmer (works only for English terms). Btw, I've seen that I can use the Snowball stemmer with the flag language="English" or language="Spanish". Moreover, I've read som

solr search results threshold

2012-10-18 Thread linuxboy
Hi , If I have search results around 100 results. I want to impose a threshold to get results only from 20 to 30. So that I can show these ten results to the customer. Sreenivas A. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-search-results-threshold-tp4014428.htm

Re: Replication didn't work immediately after leader's SolrCore reload.

2012-10-18 Thread Erick Erickson
First, why are you reloading the leader? Just as an experiment? I know there's been some JIRA issues with reloading cores and SolrCloud... Second, what's your evidence that replication didn't happen? For just a few documents the slave index might be updated from the transaction log and you wouldn'

Re: What does _version_ field used for?

2012-10-18 Thread Erick Erickson
I just updated http://wiki.apache.org/solr/SchemaXml#Recommended_fields with some info about _version_. Erick On Thu, Oct 18, 2012 at 12:15 AM, Shawn Heisey wrote: > On 10/17/2012 11:37 AM, Nicholas Ding wrote: >> >> I have the same problem, does it mean I have to put _version_ field in >> e

Re: Error: _version_field must exist in schema

2012-10-18 Thread Erick Erickson
I've updated the schema.xml page, see http://wiki.apache.org/solr/SchemaXml#Recommended_fields Care to change the schema.xml file to warn about this too and submit a patch? Best Erick On Thu, Oct 18, 2012 at 4:21 AM, Dotan Cohen wrote: > On Thu, Oct 18, 2012 at 9:21 AM, Rafał Kuć wrote: >> He

Re: solr4.0 problem zkHost with multiple hosts throws out of range exception

2012-10-18 Thread Yury Kats
I'm pretty sure this problem has been there forever -- the parsing of zkHost is busted. I believe it's only been intended for example/demo purposes and therefore makes some assumptions about the value. I haven't looked at the current code, but this is my recollection from about a year ago. >

Query related to data source

2012-10-18 Thread Leena Jawale
Hi, I want to configure MS Aceess 2007 database with data source of lucidworks imagination. Is it possible to configure MS Access.? What should I need to do for that? Thanks & regards, Leena Jawale The contents of this e-mail and any attachment(s) may contain c

How can you do a fuzzy query with a single term that contains spaces

2012-10-18 Thread Gyozo Kudor
I know that a fuzzy query looks like this field:term~0.5. How can I do the same for a term that has a space in it but was indexed as a single term for example with keywordtokenizer. I don't want to do a sloppy search I wan't to do a fuzzy search but I can't because both have the same syntax. For

solr4.0 problem zkHost with multiple hosts throws out of range exception

2012-10-18 Thread Pascal
Hi there, I've set up a test solr 4.0 cloud with some nodes, everything worked fine until i tried to put more than 1 zookeeper instance. If i put only one server it's ok eg: java -DzkHost=10.0.0.1:9983 -DzkRun -jar start.jar But if i put more than 1 server in zkHost param an Exception is thrown

Re: Re: how solr4.0 and zookeeper run on weblogic

2012-10-18 Thread rayvicky
public int addIndexDocuements(String hostUrl) throws IOException { HttpSolrServer solrServer = getServer("http://localhost:7001/solr/collection1/";); int res=1; try { Collection docs = new ArrayList();

Re: maven artifact for solr-solrj-4.0.0

2012-10-18 Thread Grzegorz Sobczyk
Thanks! W dniu 18.10.2012 o 10:37 Jeevanandam Madanagopal pisze: Sorry, missed the maven central repo link - http://search.maven.org/#artifactdetails|org.apache.solr|solr-solrj|4.0.0|jar Cheers, Jeeva Blog: http://www.myjeeva.com On Oct 18, 2012, at 1:59 PM, Jeevanandam Madanagopal wro

Re: Re: how solr4.0 and zookeeper run on weblogic

2012-10-18 Thread Vadim Kisselmann
Hi, how your update/add command looks like? Regards Vadim 2012/10/18 rayvicky : > i make it work on weblogic. > but when i add or update index ,it error > > > <2012-10-17 ?Χ03?47·?3? CST> unexpected error occurred while retrieving the session for Web application: > weblogic.servlet.internal

Re: maven artifact for solr-solrj-4.0.0

2012-10-18 Thread Jeevanandam Madanagopal
Sorry, missed the maven central repo link - http://search.maven.org/#artifactdetails|org.apache.solr|solr-solrj|4.0.0|jar Cheers, Jeeva Blog: http://www.myjeeva.com On Oct 18, 2012, at 1:59 PM, Jeevanandam Madanagopal wrote: > Grzegorz Sobczyk - It's already available in Maven central repo link

Re: maven artifact for solr-solrj-4.0.0

2012-10-18 Thread Jeevanandam Madanagopal
Grzegorz Sobczyk - It's already available in Maven central repo link org.apache.solr solr-solrj 4.0.0 PS: use this 'http://search.maven.org' official website of maven central repository for artifact search/download Cheers, Jeeva Blog: http://www.myjeeva.com On Oct 18, 2012, at 1

Re: Error: _version_field must exist in schema

2012-10-18 Thread Dotan Cohen
On Thu, Oct 18, 2012 at 9:21 AM, Rafał Kuć wrote: > Hello! > > Look at your solrconfig.xml file, you should see something like that: > > > ${solr.data.dir:} > > > Just remove it and Solr shouldn't bother you with the version field > information. However remember that some features won't work (l

Re: Error: _version_field must exist in schema

2012-10-18 Thread Rafał Kuć
Hello! Look at your solrconfig.xml file, you should see something like that: ${solr.data.dir:} Just remove it and Solr shouldn't bother you with the version field information. However remember that some features won't work (like the real time get or partial documents update). You can also ad

New data not indexing, after data deletion.

2012-10-18 Thread Cool Techi
Hi, We have a huge index size, running to around 350Gb+, we yesterday deleted some data on it. The deletion completed successfully, but post the deletion new data was not being indexed. We restarted the server, but neither the tomcat logs or Solr logs are giving any indication of why this might

Re: Error: _version_field must exist in schema

2012-10-18 Thread Dotan Cohen
On Thu, Oct 18, 2012 at 12:25 AM, Rafał Kuć wrote: > Hello! > > You can some find information about requirements of SolrCloud at > http://wiki.apache.org/solr/SolrCloud . I don't know if _version_ is > mentioned elsewhere. > > As for Websolr - I'm afraid I can't say anything about the cause of > t

Re: maven artifact for solr-solrj-4.0.0

2012-10-18 Thread Amit Nithian
I am not sure if this repository https://repository.apache.org/content/repositories/releases/ works but the modification dates seem reasonable given the timing of the release. I suspect it'll be on maven central soon (hopefully) On Wed, Oct 17, 2012 at 11:13 PM, Grzegorz Sobczyk wrote: > Hello >