-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to run solr-indexing without an existing collection #289
Comments
If Solr is also used during analysis for temporary results, there might be two Solr instances: one local for doing current analysis and one with pre-configured collection running at another host. |
estimation: note: this was a rough, and not a realistic estimation. The task is more complex than I first thought. |
This comment is just for recording the current situation: In backend of the indexing process there are two Java parameters:
Here the index process only reads from the validation index, and enhances the bibliographical record with it, then stores the result into the main index. As part of validation process the In summary:
In the web interface two new configuration options has been introduced: Conclusion:
Based on this I reset the estimation to 10 hours. |
@nichtich I moved the schema preparation into
You have to run only the For experimenting the settings I created a new flag ONLY_INDEX=$(echo ${TYPE_PARAMS} | grep -c -P -e '--onlyIndex' || true)
if [[ "${ONLY_INDEX}" == "0" ]]; then
CORE=${NAME}_dev
else
CORE=${NAME}
fi If you still want to use two Solr indices, and you are fine with the Note: the feature is not yet done. |
another TODO:
|
…ng the issue around 'validation' Solr instance
…g the issue around 'validation' Solr instance
@nichtich Now it is dependent on the configuration, and hopefully there is no hidden hardwired variables in the code. In order to prevent index creation use |
…g the issue around 'validation' Solr instance
@nichtich Had you have a chance to check it? In the README I provided somewhat more detailed documentation. I guess this issue is fixed, but I would like to hear your opinion. |
We would like to use qa-catalogue with an existing SolrCloud with limited access (qa-catalogue should not be allowed to create and rename collections). As far as I understand the current solr indexing process involves:
$db
and${db}_dev
) and adjust their schema${name}_dev
, and finally optimize the index and swap names.The required use case is as following instead:
I suppose the following extension to configuration is needed:
SOLR
to point to a solr collection via URL (e.g.http://example.org:8983/solr/qa-catalogue
)solr-scripts
(prepare-solr
andindex
) to disable the${db}_dev
collection and any changes to the schemaThe text was updated successfully, but these errors were encountered: