Recreating SOLR index after a schema change - without having to re-post the data

2009-07-30 Thread Vannia Rajan
Hi, We are using solr-server for a large data-set. We need some changes in solr schema.xml (datatype change from integer to sint for few fields). It turns out that the two datatypes (integer and sint) are incompatible and hence we need to re-index SOLR. My question is: Is there any way by wh

Limiting facets for huge data - setting indexed=false in schema.xml

2009-07-30 Thread Rahul R
Hello, We are trying to get Solr to work for a really huge parts database. Details of the database - 55 million parts - Totally 3700 properties (facets). But each record will not have value for all properties. - Most of these facets are defined as dynamic fields within the Solr Index We were getti

Re: Using DIH for parallel indexing

2009-07-30 Thread Avlesh Singh
Thanks for the revert Noble. A few questions are still open: 1. Can I pass parameters to DIH and be able to use them inside the "query" attribute of an entity inside the data-config file? 2. Can I use the same data-import-handler in someway so that indexing can be carried out in parall

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Thu, Jul 30, 2009 at 9:45 PM, Andrew Clegg wrote: > > > Erik Hatcher wrote: >> >> >> On Jul 30, 2009, at 11:54 AM, Andrew Clegg wrote: >>>            >> url="${domain.pdb_code}-noatom.xml" processor="XPathEntityProcessor" >>> forEach="/"> >>>                >> xpath="//*[local-name()='structCate

Re: Using DIH for parallel indexing

2009-07-30 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Fri, Jul 31, 2009 at 11:11 AM, Avlesh Singh wrote: > I am using Solr 1.3 and have a few questions regarding DIH: > >   1. Can I pass parameters to DIH and be able to use them inside the >   "query" attribute of an entity inside the data-config file? >   2. I am indexing some 2 million database r

Re: query in solr lucene

2009-07-30 Thread Avlesh Singh
What field type are you using? What kind of filters have you applied on the field? The easiest way to make it work it to use a "string" field. Cheers Avlesh On Fri, Jul 31, 2009 at 11:09 AM, Sushan Rungta wrote: > I tried this but this didn't worked... > > Regards, > Sushan > > At 12:37 AM 7/30

Using DIH for parallel indexing

2009-07-30 Thread Avlesh Singh
I am using Solr 1.3 and have a few questions regarding DIH: 1. Can I pass parameters to DIH and be able to use them inside the "query" attribute of an entity inside the data-config file? 2. I am indexing some 2 million database records using DIH with 4-5 nested entities (just one level

Re: query in solr lucene

2009-07-30 Thread Sushan Rungta
I tried this but this didn't worked... Regards, Sushan At 12:37 AM 7/30/2009, Avlesh Singh wrote: You may index your data using a delimiter, like $my-field-content$. While searching, perform a phrase query with the leading and trailing "$" appended to the query string. Cheers Avlesh On Wed, J

Re: How can i get lucene index format version information?

2009-07-30 Thread Jay Hill
Check the system request handler: http://localhost:8983/solr/admin/system Should look something like this: 1.3.0.2009.07.28.10.39.42 1.4-dev 797693M - jayhill - 2009-07-28 10:39:42 2.9-dev 2.9-dev 794238 - 2009-07-15 18:05:08 -Jay On Thu, Jul 30, 2009 at 10:32 AM, Walter Underwood wrote: > I

facet sorting by index on sint fields

2009-07-30 Thread Simon Stanlake
Hi, I have a field in my schema specified using Where "sint" is specified as follows (the default from schema.xml) When I do a facet on this field using sort=index I always get the values back in lexicographic order. Eg: adding this to a query string... facet=true&facet.field=wordCount&

Re: µTorrent indexed as µTorrent

2009-07-30 Thread Yonik Seeley
On Thu, Jul 30, 2009 at 6:34 PM, Bill Au wrote: >  FYI, it took me a while to discover that SolrJ by default uses a GET request > for > query, which uses ISO-8859-1. That depends on the servlet container. SolrJ GET requests are sent in UTF-8. Some servlet containers such as Tomcat need extra co

Re: µTorrent indexed as µTorrent

2009-07-30 Thread Bill Au
Thanks, Robert. That's exactly what my problem was. Things work find after I make sure that all my processing (index and query) are using UTF-8. FYI, it took me a while to discover that SolrJ by default uses a GET request for query, which uses ISO-8859-1. I had to explicitly use a POST to do qu

Re: Problem with retrieving field from database using DIH

2009-07-30 Thread Shalin Shekhar Mangar
On Fri, Jul 31, 2009 at 1:43 AM, ahammad wrote: > From what I can gather, it is not finding the data and/or column, and thus > cannot populate the required field. However, the data is there, which I was > able to prove outside of Solr. > > Is there a way to generate more descriptive logs for this

Re: What does "showItems" config mean on fieldValueCache mean?

2009-07-30 Thread Stephen Duncan Jr
On Thu, Jul 30, 2009 at 4:18 PM, Erik Hatcher wrote: > > On Jul 30, 2009, at 3:32 PM, Stephen Duncan Jr wrote: > > What's the effect of showItems attribute on the fieldValueCache in Solr >> 1.4? >> > > Just outputs details of the last accessed items from the cache in the stats > display. > >

Solr/Lucene performance differences on Mac OS X running Tiger vs. Leopard ?

2009-07-30 Thread Mark Bennett
As far as our NOC guys know the machines are approximately the same, aside from the OS. The Leopard machine is running the default 1.5 JVM. And it's possible that some other application or config issues is to blame. Nobody's "blaming" the OS or Lucene, we're just asking around. Searches on Googl

Re: What does "showItems" config mean on fieldValueCache mean?

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 3:32 PM, Stephen Duncan Jr wrote: What's the effect of showItems attribute on the fieldValueCache in Solr 1.4? Just outputs details of the last accessed items from the cache in the stats display. Erik if (showItems != 0) { Map items = cache.getLates

Problem with retrieving field from database using DIH

2009-07-30 Thread ahammad
Hello all, I've been having this issue for a while now. I am indexing a Sybase database. Everything is fantastic, except that there is 1 column that I can never get back. I don't have direct database access via Sybase client, but I was able to extract the data using some Java code. The field is

How to get a stack trace

2009-07-30 Thread Nicolae Mihalache
Hello, I'm a new user of solr but I have worked a bit with Lucene before. I get some out of memory exception when optimizing the index through Solr and I would like to find out why. However, the only message I get on standard output is: Jul 30, 2009 9:20:22 PM org.apache.solr.common.SolrExceptio

What does "showItems" config mean on fieldValueCache mean?

2009-07-30 Thread Stephen Duncan Jr
What's the effect of showItems attribute on the fieldValueCache in Solr 1.4? -- Stephen Duncan Jr www.stephenduncanjr.com

Re: Reasonable number of maxWarming searchers

2009-07-30 Thread Erik Hatcher
I recommend, in this case, that you use Solr's autocommit feature (see solrconfig.xml) rather than having your indexing clients issue their own commits. Overlapped searcher warming is just going to be too much of a hit on RAM, and generally unnecessary with autocommit. Erik On Jul

Reasonable number of maxWarming searchers

2009-07-30 Thread Jérôme Etévé
Hi All, I'm planning to have a certain number of processes posting independently in a solr instance. This instance will solely act as a master instance. No clients queries on it. Is there a problem if i set maxWarmingSearchers to something like 30 or 40? Also, how do I disable the cache warmi

Re: Mailing list: Change the reply too ?

2009-07-30 Thread Chris Hostetter
: I don't know if it does the same from everyone, but when I use the : reply function of my mail agent, it sets the recipient to the user who : sent the message, and not the mailing list. : : So it's quite annoying cause I have to change the recipient each time : I reply to someone on the list.

Re: Minimum facet length?

2009-07-30 Thread Darren Govoni
Hi Erik, Thanks for the tip. H, well that's a good point, or maybe I will just do the word filtering upfront and store it separately now that I think about it more. Darren On Thu, 2009-07-30 at 13:05 -0400, Erik Hatcher wrote: > On Jul 30, 2009, at 1:00 PM, Shalin Shekhar Mangar wrote: > >

Re: Posting data in JSON

2009-07-30 Thread Ryan McKinley
check: https://issues.apache.org/jira/browse/SOLR-945 this will not likely make it into 1.4 On Jul 30, 2009, at 1:41 PM, Jérôme Etévé wrote: Hi, Nope, I'm not using solrj (my client code is in Perl), and I'm with solr 1.3. J. 2009/7/30 Shalin Shekhar Mangar : On Thu, Jul 30, 2009 at 8

Re: Mailing list: Change the reply too ?

2009-07-30 Thread Jérôme Etévé
2009/7/30 Erik Hatcher : > > On Jul 30, 2009, at 1:44 PM, Jérôme Etévé wrote: > >> Hi all, >> >> I don't know if it does the same from everyone, but when I use the >> reply function of my mail agent, it sets the recipient to the user who >> sent the message, and not the mailing list. >> >> So it's

Re: Mailing list: Change the reply too ?

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 1:44 PM, Jérôme Etévé wrote: Hi all, I don't know if it does the same from everyone, but when I use the reply function of my mail agent, it sets the recipient to the user who sent the message, and not the mailing list. So it's quite annoying cause I have to change the reci

Mailing list: Change the reply too ?

2009-07-30 Thread Jérôme Etévé
Hi all, I don't know if it does the same from everyone, but when I use the reply function of my mail agent, it sets the recipient to the user who sent the message, and not the mailing list. So it's quite annoying cause I have to change the recipient each time I reply to someone on the list. Can

Re: Posting data in JSON

2009-07-30 Thread Jérôme Etévé
Hi, Nope, I'm not using solrj (my client code is in Perl), and I'm with solr 1.3. J. 2009/7/30 Shalin Shekhar Mangar : > On Thu, Jul 30, 2009 at 8:31 PM, Jérôme Etévé > wrote: >> >> Hi All, >> >> I'm wondering if it's possible to post documents to solr in JSON format. >> >> JSON is much fast

Re: How can i get lucene index format version information?

2009-07-30 Thread Walter Underwood
I think the properties page in the admin UI lists the Lucene version, but I don't have a live server to check that on at this instant. wunder On Jul 30, 2009, at 10:26 AM, Chris Hostetter wrote: : > i want to get the lucene index format version from solr web app (as : the Luke request h

Re: How can i get lucene index format version information?

2009-07-30 Thread Chris Hostetter
: > i want to get the lucene index format version from solr web app (as : the Luke request handler writes it out: : :indexInfo.add("version", reader.getVersion()); that's the index version (as in "i have added docs to the index, so the version number has changed") the question is about the

Re: Minimum facet length?

2009-07-30 Thread Shalin Shekhar Mangar
On Thu, Jul 30, 2009 at 10:35 PM, Erik Hatcher wrote: > > On Jul 30, 2009, at 1:00 PM, Shalin Shekhar Mangar wrote: > > On Thu, Jul 30, 2009 at 9:53 PM, wrote: >> >> Hi, >>> I am exploring the faceted search results of Solr. My query is like this. >>> >>> >>> >>> http://localhost:8983/solr/sele

Re: Minimum facet length?

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 1:00 PM, Shalin Shekhar Mangar wrote: On Thu, Jul 30, 2009 at 9:53 PM, wrote: Hi, I am exploring the faceted search results of Solr. My query is like this. http://localhost:8983/solr/select?q=*:*&facet=true&facet.field=text&facet.limit=500&facet.prefix=wick If I don

Re: Minimum facet length?

2009-07-30 Thread Shalin Shekhar Mangar
On Thu, Jul 30, 2009 at 9:53 PM, wrote: > Hi, > I am exploring the faceted search results of Solr. My query is like this. > > > http://localhost:8983/solr/select?q=*:*&facet=true&facet.field=text&facet.limit=500&facet.prefix=wick > > If I don't use the prefix, I get back totals for words like 1,

Re: Posting data in JSON

2009-07-30 Thread Shalin Shekhar Mangar
On Thu, Jul 30, 2009 at 8:31 PM, Jérôme Etévé wrote: > Hi All, > > I'm wondering if it's possible to post documents to solr in JSON format. > > JSON is much faster than XML to get the queries results, so I think > it'd be great to be able to post data in JSON to speed up the indexing > and lower

RE: Range Query question

2009-07-30 Thread Matt Beaumont
Thanks for the reply; I had thought the solution would be altering the XML. Ensdorf Ken wrote: > >> The problem is that the indexed form of this XML is flattened so the >> >> entity has 2 garage names, 2 min values and 2 max values, but the >> grouping >> between the garage name and it's min

Re: update some index documents after indexing process is done with DIH

2009-07-30 Thread Marc Sturlese
Hoss I see what you mean. I am trying to implement a CustomUpdateProcessor checking out here: http://wiki.apache.org/solr/UpdateRequestProcessor What is confusing me now is that I have to implement my logic in processComit as you said: >>you'll still need the "double commit" (once so you can see

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Chantal Ackermann
It's very easy to write your own entity processor. At least, that is my experience with extending the SQLEntityProcessor to my needs. So, maybe you'd be better off subclassing the xpath processor and handling the xpath in a way you can keep your configuration straight forward. Andrew Clegg sc

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 12:19 PM, Andrew Clegg wrote: Don't worry -- your hints put me on the right track :-) I got it working with: Now, to get it to ignore missing files without an error... Hmm... onError="skip" or abort, or continue Erik

Minimum facet length?

2009-07-30 Thread darren
Hi, I am exploring the faceted search results of Solr. My query is like this. http://localhost:8983/solr/select?q=*:*&facet=true&facet.field=text&facet.limit=500&facet.prefix=wick If I don't use the prefix, I get back totals for words like 1,a,of,2,3,4. 1 letter/number occurrences in my documen

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Andrew Clegg
Chantal Ackermann wrote: > > > my experience with XPathEntityProcessor is non-existent. ;-) > > Don't worry -- your hints put me on the right track :-) I got it working with: Now, to get it to ignore missing files without an error... Hmm... Che

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Andrew Clegg
Erik Hatcher wrote: > > > On Jul 30, 2009, at 11:54 AM, Andrew Clegg wrote: >>> url="${domain.pdb_code}-noatom.xml" processor="XPathEntityProcessor" >> forEach="/"> >>> xpath="//*[local-name()='structCategory']/*[local-name()='struct']/ >> *[local-name()='title']" >

Re: SOLR deleted almost everything?

2009-07-30 Thread Reece
Right, I figured that that's how it should have sorted... which is why I did a range from 0 to 200 That should have worked for my example, but it removed things over 200, which using lexical sorting seems to still be invalid. What's left are things like: 998914 Now, obviously that is exp

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Chantal Ackermann
Hi Andrew, my experience with XPathEntityProcessor is non-existent. ;-) Just after a quick look at the method that throws the exception: private void addField0(String xpath, String name, boolean multiValued, boolean isRecord) { List paths = new LinkedList(Arrays.

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 11:54 AM, Andrew Clegg wrote: xpath="//*[local-name()='structCategory']/*[local-name()='struct']/ *[local-name()='title']" /> The XPathEntityProcessor doesn't support that fancy of an xpath - it supports only a limited subset. Try /structCate

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Andrew Clegg
Chantal Ackermann wrote: > > Hi Andrew, > > your inner entity uses an XML type datasource. The default entity > processor is the SQL one, however. > > For your inner entity, you have to specify the correct entity processor > explicitly. You do that by adding the attribute "processor", and th

Re: How can i get lucene index format version information?

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 9:19 AM, Licinio Fernández Maurelo wrote: i want to get the lucene index format version from solr web app (as luke do), i've tried looking for the info at luke handler response, but i havn't found this info the Luke request handler writes it out: indexInfo.add("version

Re: Posting Word documents

2009-07-30 Thread Mark Miller
Look again at ExtractingRequestHandler. I havn't looked at what post.jar does internally, but it probably doesn't work with ExtractingRequestHandler unless you can send other params as well. I would use curl as the examples in the doc for ExtractingRequestHandler does. Or figure out if post.ja

Posting Word documents

2009-07-30 Thread Kevin Miller
I am trying to post a Word document using the Solr post.jar file. When I attempt this, using a command line interface, I get a fatal error. I have looked at the following resources: Solr.com: Tutorial, Docs, FAQ, & ExtractingRequestHandler. As near as I can tell, I have all the files in the pro

Re: NullPointerException in DataImportHandler

2009-07-30 Thread Chantal Ackermann
Hi Andrew, your inner entity uses an XML type datasource. The default entity processor is the SQL one, however. For your inner entity, you have to specify the correct entity processor explicitly. You do that by adding the attribute "processor", and the value is the classname of the processor

Posting data in JSON

2009-07-30 Thread Jérôme Etévé
Hi All, I'm wondering if it's possible to post documents to solr in JSON format. JSON is much faster than XML to get the queries results, so I think it'd be great to be able to post data in JSON to speed up the indexing and lower the network load. All the best ! Jerome Eteve. -- Jerome Eteve

Re: Question about formatting the results returned from Solr

2009-07-30 Thread Avlesh Singh
> > instead they should be sent to separate fields > author_fname > author_lname > author_email > or, a dynamic field called author_* (I am assuming all of the author fields to be of the same type). And if you use SolrJ, you can transform this info into a data structure like "Map authorInfo", whe

NullPointerException in DataImportHandler

2009-07-30 Thread Andrew Clegg
First of all, apologies if you get this twice. I posted it by email an hour ago but it hasn't appeared in any of the archives, so I'm worried it's got junked somewhere. I'm trying to use a DataImportHandler to merge some data from a database with some other fields from a collection of XML files,

Re: SOLR deleted almost everything?

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 9:44 AM, Reece wrote: Hello everyone :) I was trying to purge out older things.. in this case of a certain type of document that had an ID lower than 200. So I posted this: id:[0 TO 200] AND type:I Now, I have only 49 type "I" items total in my index (shown by /s

RE: Range Query question

2009-07-30 Thread Ensdorf Ken
> The problem is that the indexed form of this XML is flattened so the > > entity has 2 garage names, 2 min values and 2 max values, but the > grouping > between the garage name and it's min and max values is lost. The > danger is > that we end up doing a comparison of the min-of-the-mins and the

RE: Boosting ('bq') on multi-valued fields

2009-07-30 Thread Ensdorf Ken
> Hey Ken, > Thanks for your reply. > When I wrote '5|6' I ment that this is a multiValued field with two > values > '5' and '6', rather than the literal string '5|6' (and any Tokenizer). > Does > your reply still holds? That is, are multiValued fields dependent on > the > notion of tokenization t

Re: Multi select faceting

2009-07-30 Thread Mike
Grant, thanks for the reply. We tested our requirement against 1.4-dev and were able to achieve what we wanted. The site we're rebuilding has low traffic, so we're going to run with 1.4-dev. Cheers. - Original Message - From: "Grant Ingersoll" To: Sent: Thursday, July 30, 2009 8:05

SOLR deleted almost everything?

2009-07-30 Thread Reece
Hello everyone :) I was trying to purge out older things.. in this case of a certain type of document that had an ID lower than 200. So I posted this: id:[0 TO 200] AND type:I Now, I have only 49 type "I" items total in my index (shown by /solr/select?q=type:I), when there should be num

How can i get lucene index format version information?

2009-07-30 Thread Licinio Fernández Maurelo
i want to get the lucene index format version from solr web app (as luke do), i've tried looking for the info at luke handler response, but i havn't found this info -- Lici

Re: Question about formatting the results returned from Solr

2009-07-30 Thread ahammad
Yes, I get that. The problem arises when you have multiple authors. How can I know which first name goes with which user id etc... Cheers Noble Paul നോബിള്‍ नोब्ळ्-2 wrote: > > apparently all the dat ais going to one field 'author' > > instead they should be sent to separate fields > author

Range Query question

2009-07-30 Thread Matt Beaumont
Hi, I have a set of XML data that holds Minimum and Maximum values and I need to be able to do specific range queries against them. (Note that this is a contrived example, and that in reality the garage would probably hold all the individual prices of all its cars, but this is analogous to the p

Re: Question about formatting the results returned from Solr

2009-07-30 Thread Noble Paul നോബിള്‍ नोब्ळ्
apparently all the dat ais going to one field 'author' instead they should be sent to separate fields author_fname author_lname author_email so you would get details like John Doe j...@doe.com On Wed, Jul 29, 2009 at 7:39 PM, ahammad wrote: > > Hi all, > > Not sure how good my

Re: Multi select faceting

2009-07-30 Thread Grant Ingersoll
On Jul 29, 2009, at 2:38 PM, Mike wrote: Hi, We're using Lucid Imagination's LucidWorks Solr 1.3 and we have a requirement to implement multiple-select faceting where the facet cells show up as checkboxes and despite checked options, all of the options continue to persist with counts. Th

solr-user@lucene.apache.org

2009-07-30 Thread Toby Cole
On 30 Jul 2009, at 11:17, Jörg Agatz wrote: It sounds like you're not using 'entities' for your '&' characters (ampersands) in your XML. These should be converted to "&" This should look familiar if you've ever written any HTML. I dont understand this i musst change even & to & ? Yes, '&'

solr-user@lucene.apache.org

2009-07-30 Thread Erik Hatcher
On Jul 30, 2009, at 6:17 AM, Jörg Agatz wrote: Also, i use the Comandline tool "java .jar post.jar xyz.xml" i donkt know what you are mean with It sounds like you're not using 'entities' for your '&' characters (ampersands) in your XML. These should be converted to "&" This should look famili

solr-user@lucene.apache.org

2009-07-30 Thread Jörg Agatz
Also, i use the Comandline tool "java .jar post.jar xyz.xml" i donkt know what you are mean with It sounds like you're not using 'entities' for your '&' characters (ampersands) in your XML. These should be converted to "&" This should look familiar if you've ever written any HTML. I dont understa

Re: Skipping fields from XML

2009-07-30 Thread Edwin Stauthamer
perfect! That resolved my issue. BTW. This was my first posting on this list. I must say that the responses were quick and to the point!!! Good community help! On Thu, Jul 30, 2009 at 10:58 AM, AHMET ARSLAN wrote: > > > How can I tell Solr to skip unwanted fields and only index > > the fields t

Re: Skipping fields from XML

2009-07-30 Thread AHMET ARSLAN
> How can I tell Solr to skip unwanted fields and only index > the fields that I have declared in my schema.xml? More precisely: (taken from schema.xml)

solr-user@lucene.apache.org

2009-07-30 Thread Markus Jelsma - Buyways B.V.
Indeed, or enclose the text in CDATA tags which should work as well. On Thu, 2009-07-30 at 09:52 +0100, Toby Cole wrote: > Any chance of getting that stack trace as more than one line? :) > Also, where are you posting your documents from? (e.g. Java, PHP, > command line etc). > > It sound

Re: Skipping fields from XML

2009-07-30 Thread Koji Sekiguchi
Edwin Stauthamer wrote: Hi, I want to index a perfectly good solr XML-file into an Solr/Lucene instance. The problem is that the XML has many fields that I don't want to be indexed. I tried to index the file but Solr gives me an error because the XML contains fields that I have not declared in

solr-user@lucene.apache.org

2009-07-30 Thread Toby Cole
Any chance of getting that stack trace as more than one line? :) Also, where are you posting your documents from? (e.g. Java, PHP, command line etc). It sounds like you're not using 'entities' for your '&' characters (ampersands) in your XML. These should be converted to "&" This should look

Re: Skipping fields from XML

2009-07-30 Thread AHMET ARSLAN
: I want Solr to index / store only a few fields from the XML-file to be : indexed and skip all the other fields. I think Dynamic fields [1] can help you. [1] http://wiki.apache.org/solr/SchemaXml#head-82dba16404c8e3318021320638b669b3a6d780d0

Re: Skipping fields from XML

2009-07-30 Thread Noble Paul നോബിള്‍ नोब्ळ्
I don't think there is a way to do that. On Thu, Jul 30, 2009 at 1:39 PM, Edwin Stauthamer wrote: > Hi, > > I want to index a perfectly good solr XML-file into an Solr/Lucene instance. > The problem is that the XML has many fields that I don't want to be indexed. > > I tried to index the file but

Skipping fields from XML

2009-07-30 Thread Edwin Stauthamer
Hi, I want to index a perfectly good solr XML-file into an Solr/Lucene instance. The problem is that the XML has many fields that I don't want to be indexed. I tried to index the file but Solr gives me an error because the XML contains fields that I have not declared in my schema.xml How can I t

Re: solr indexing on same set of records with different value of unique field, not working fine.

2009-07-30 Thread noor
Sorry, schema.xml file is here in this mail... noor wrote: FYI Attached schema.xml file. And the add doc xml snippets are, 501 ESQ.VISION.A72 201 CpuLoopEnd Process=$Z4B1 CpuPin=0,992 Program=\VEGAS.$SYSTEM.SYS00.MEASFH Terminal=\VEGAS.$TSPM.#TERM CpuBusy=

Re: solr indexing on same set of records with different value of unique field, not working fine.

2009-07-30 Thread noor
FYI Attached schema.xml file. And the add doc xml snippets are, 501 ESQ.VISION.A72 201 CpuLoopEnd Process=$Z4B1 CpuPin=0,992 Program=\VEGAS.$SYSTEM.SYS00.MEASFH Terminal=\VEGAS.$TSPM.#TERM CpuBusy=0 MemPage=24 User=50,10 \VEGAS.$QQDS PLGOVNP

solr-user@lucene.apache.org

2009-07-30 Thread Jörg Agatz
Good Morning SolR :-) its morning in Germany! i have a Problem, with the Indexing... I often become an Error. I think it is because in the XML stand this Character "&" I need the Character, what happens? SimplePostTool: FATAL: Solr returned an error: comctcwstxexcWstxLazyExcept

Re: search suggest

2009-07-30 Thread Shalin Shekhar Mangar
On Thu, Jul 30, 2009 at 4:52 AM, Jason Rutherglen < jason.rutherg...@gmail.com> wrote: > I created an issue and have added some notes > https://issues.apache.org/jira/browse/SOLR-1316 > Also see https://issues.apache.org/jira/browse/SOLR-706 -- Regards, Shalin Shekhar Mangar.