just compiled some hopefully basic solr questions regarding schemas.
My situation: previously had a multi-cored instance of solr, each core containing a different document structure. Although information in documents in one core was related to documents in other different cores, specific legal constraints forced us to keep that data scatered in indepent instances. Therefore each time a request to the solr instance was issued, several cores were queried and the client app "merged" and structured the responses of the several separate cores. For the sake of exemplification: suppose we were a music store and stupid as it sounds, we had a core for CDs, a core for DVDs, a core for tapes, etc each having its own different schema; and then when an employee checked the stock all of these cores returned their responses for the app in the employee's computer to read, process the different structures, and present the results as one unified list.
Well, the legal constraints have been lifted and we're now merging the cores together, so far relying heavily in dynamicFields for schema flexibility. That however brings a whole new lot of challenges and a few doubts as well:
1 - What's better: Having a reduced number of documents each with a huge number of fields (we're talking hundreds, occasionaly a thousand here or there, all indexed) or instead scattering the information in several minor-sized documents? From what I've been reading in theory the first approach would be advisable, but I don't think that any of the cases considered this amount of fields.
2 - Is it possible to perform any sort of relational search? What I mean is something like having the following documents:
<doc>
<ID>ALB@1234</ID>
<artist_t>Metallica</artist>
<album_t>Saint Anger</album>
</doc>
<doc>
<ID>PROD@12</ID>
<AlbID>ALB@1234</AlbID>
<format_t>CD</format_t>
<price_m>8.99</price_m>
</doc>
<doc>
<ID>PROD@13</ID>
<AlbID>ALB@1234</AlbID>
<format_t>MP3</format_t>
<price_m>3.99</price_m>
</doc>
and then upon performing a search for Metallica have all three documents retrieved? Keep in mind that the approach of storing the info of the last two documents in the first one as multivalued is not really an option, because as far as I know there would be no way of p.e. retrieving the right format that matched a range search by price.
3 - Alternatively, is it possible to define some sort of subdocument structure as part of a document, as in a multilevel document? Again I don't mean poly or multiValued fields here, since as far as I know they aren't suitable for more complex and structured info. Was thinking of something along the lines of:
<doc>
<ID>ALB@1234</ID>
<artist_t>Metallica</artist>
<album_t>Saint Anger</album>
<formats>
<format_x><ID>PROD@13</ID><AlbID>ALB@1234</AlbID><format_t>MP3</format_t><price_m>3.99</price_m></format_x>
<format_x><ID>PROD@12</ID><AlbID>ALB@1234</AlbID><format_t>CD</format_t><price_m>8.99</price_m></format_x>
</formats>
</doc>
4 - A consideration: of course, this situation can be fixed by modeling the schema like described on 2) and performing more than one query to the server, but that's not really the most desirable solution.
Looking forward to any comment or suggestion. Bashing is a bit less welcome but still acceptable, just go easy on me. ;) And I'm sorry if these questions sound stupid but really needing some help here.