Re: Child entities in document not loading

2010-03-09 Thread John Ament
So right now I'm thinking that solr just doesn't like me. I just noticed that the following document config doesn't work for me

Re: Child entities in document not loading

2010-03-08 Thread John Ament
All It seems like my issue is simply on the concept of child entities. I had to add a second table to my query to pull pricing info. At first, I was putting it in a separate entity. Didn't work, even though I added the fields. When I rewrote my query as It loaded. I'm wondering if there's

Re: Child entities in document not loading

2010-03-08 Thread John Ament
Ok - downloaded the binary off of google code and it's loading. The 3 child entities do not appear as I had suspected. Thanks, John On Mon, Mar 8, 2010 at 12:12 PM, John Ament wrote: > The issue's not about indexing, the issue's about storage. It seems like > the fields (sections, colors, si

Re: Child entities in document not loading

2010-03-08 Thread John Ament
The issue's not about indexing, the issue's about storage. It seems like the fields (sections, colors, sizes) are all not being stored, even though store=true. I could not get Luke to work, no. The webstart just hangs at downloading 0%. Thanks, John On Mon, Mar 8, 2010 at 12:06 PM, Erick Eric

Re: Child entities in document not loading

2010-03-08 Thread John Ament
Another thing I don't get. The system feels like it's doing the extra queries. I put the LogTransformer expecting to see additional output on one of the child entities And yet there is no additional output. Thanks, John On Mon, Mar 8, 2010 at 11:37 AM, John Ament wrote: > Erick, > > I'm s

Re: Child entities in document not loading

2010-03-08 Thread Erick Erickson
Sorry, won't be able to really look till tonight. Did you try Luke? What did it show? One thing I did notice though... field name="sections" type="string" indexed="true" stored="true" multiValued="true"/> string types are not analyzed, so the entire input is indexed as a single token. You might

Re: Child entities in document not loading

2010-03-08 Thread John Ament
Erick, I'm sorry, but it's not helping much. I don't see anything on the admin screen that allows me to browse my index. Even using Luke, my assumption is that it's not loading correctly in the index. What parameters can I change in the logs to make it print out more information? I want to see

Re: Child entities in document not loading

2010-03-08 Thread Erick Erickson
Try http:///solr/admin. You'll see a bunch of links that'll allow you to examine many aspects of your installation. Additionally, get a copy of Luke (Google Lucene Luke) and point it at your index for a detailed look at the index. Finally, the SOLR log file might give you some clues... HTH Erick

Re: Child entities in document not loading

2010-03-08 Thread John Ament
Where would I see this? I do believe the fields are not ending up in the index. Thanks John On Mon, Mar 8, 2010 at 10:34 AM, Erick Erickson wrote: > What does the solr admin page show you is actually in your index? > > Luke will also help. > > Erick > > On Mon, Mar 8, 2010 at 10:06 AM, John Ame

Re: Child entities in document not loading

2010-03-08 Thread Erick Erickson
What does the solr admin page show you is actually in your index? Luke will also help. Erick On Mon, Mar 8, 2010 at 10:06 AM, John Ament wrote: > All, > > So I think I have my first issue figured out, need to add terms to the > default search. That's fine. > > New issue is that I'm trying to

Child entities in document not loading

2010-03-08 Thread John Ament
All, So I think I have my first issue figured out, need to add terms to the default search. That's fine. New issue is that I'm trying to load child entities in with my entity. I added the appropriate fields to solrconfig.xml And I updated my document to match