Missing Results

2011-11-11 Thread dennis leary
In our implementation we are using dataimport handler to bring records in
via database. In our schema we have a field called "designation" and it is
of type "string" and is multivalued. We run a simple query
q=designations:"My Designation" and it returns documents that match but
depending on the documents loaded via the db it will miss/skip some of the
documents.  If we load 3000 records with a certain where clause all the
results are returned but if we load a subset of that 3000 with different
criteria for some reason SOLR does not return the same number of documents
even though the documents that are not showing up in the results are in the
index which we verified by performing diff search (eg. q=lname:"Smith").
 Has anyone faced a similar issue in their experiences of SOLR and can
anyone point me in a direction of where to look as to what could be the
issue?


Missing Results

2011-11-11 Thread dennis leary
In our implementation we are using dataimport handler to bring records in
via database. In our document we have a field called "designation" and it
is of type "string" and is multivalued. We run a simple query
q=designations:"My Designation" and it returns documents that match but
depending on the documents loaded via the db it will miss/skip some of the
documents.  If we load 3000 records with a certain where clause all the
results are returned but if we load a subset of that 3000 with different
criteria for some reason the query does not return the same number of
documents even though the documents that are not showing up in the results
are in the index which we verified by performing diff search (eg.
q=lname:"Smith").  Has anyone faced a similar issue in their experiences of
SOLR and can anyone point me in a direction of where to look.