Do you think it might be a problem with my schema and data loading? I loaded CSV with 39 fields and didn't get any error message. I have a total of 39 stored fields, but not all of them are reported back when I query for them. Should I reload the Index? Is there a way for me to check if the Index has all 39 fields?
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yonik Seeley Sent: Friday, April 04, 2008 10:48 AM To: solr-user@lucene.apache.org Subject: Re: why don't all stored fields show up? On Fri, Apr 4, 2008 at 9:25 AM, Hung Huynh <[EMAIL PROTECTED]> wrote: > I have about 20 stored fields in string, text, and int, but only about 10 > fields show up when I query for them, whether I do fl=*,score or list them > out. What's my problem? How do I retrieve all of fields? Thanks. You should be getting back all stored fields for every document. Documents will only show fields they have (fields are sparse, it's not like a DB table). -Yonik