I am running Sol 3.6 version with 5 cores.I do full import whenever my application starts up. I am simply calling http://:/solr//dataimport?command=full-import
As of now i am facing 2 weird issues.
- One of the core's data is empty(index got deleted).Dont know why.
- In my query i had put restriction to load only 6 months old data.Sometimes i get data which is much older than 6 months.
Questions : What does default "clean=true" mean?In my case it is true.Does that mean i will not see data once i execute following query? http://:/solr//select/?q=%3A&version=2.2&start=0&rows=10&indent=on
clean=truea DELETE query will be sent first and then the documents are indexed. But none of this is reflected in the search until a commit is done, which is usually only after the full import finishes. But if you have autocommit set, then DELETE will be reflected in the searcher as soon as the first autocommit happens. - arun