Skip to content
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

Fixing usage statistics logging by adding update chain for uid #1

Merged
merged 1 commit into from Aug 23, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions dspace/solr/statistics/conf/solrconfig.xml
Expand Up @@ -1013,6 +1013,10 @@
<str name="update.chain">dedupe</str>
</lst>
-->
<!-- Update chain processor required by DSpace to auto generate the UUID field in solr -->
<lst name="defaults">
<str name="update.chain">uuid</str>
</lst>
</requestHandler>

<!-- for back compat with clients using /update/json and /update/csv -->
Expand Down Expand Up @@ -1817,8 +1821,7 @@
<processor class="solr.RunUpdateProcessorFactory" />
</updateRequestProcessorChain>
-->

<!-- use uuid as uniqueKey update processor chain -->
<!-- Required for DSpace to ensure that unique identifiers are added to each solr document -->
<updateRequestProcessorChain name="uuid">
<processor class="solr.UUIDUpdateProcessorFactory">
<str name="fieldName">uid</str>
Expand Down