-
Notifications
You must be signed in to change notification settings - Fork 124
Troubleshooting Migration from 2.0.x to 2.1.0
Add your migration experiences to this doc to help out your fellow migrators.
PermissionTemplates had a database migration changing column named admin_set_id
to source_id
. If you have code customizations for PermissionTemplates or have tests that create PermissionTemplates, you will need to rename admin_set_id
to source_id
.
This issue was encountered on release candidates, but fixed prior to the final Hyrax 2.1.0 release.
View Home page...
- FAILURE:
undefined local variable or method 'create_work_presenter' in file /app/views/_masthead.html.erb where line #1
- SOLUTION: Verified that the
render /shared/select_work_type_modal
was in stable-2.0 but is not in hyrax 2.1.0. So this was not our customization. I removed that line from our copy of_masthead.html.erb
This issue was encountered on release candidates, but fixed prior to the final Hyrax 2.1.0 release.
- FAILURE: Encountered when running our spec tests:
undefined local variable or method 'create_work_presenter'
...Did you mean? @create_work_presenter
- SOLUTION: Change references from
create_work_presenter
in overriddenviews/hyrax/my/works/index.html.erb
to@create_work_presenter
Recommended for new and migrating apps
solr-suggest degrades performance when adding collections and works to the repository starting after 200 objects have been added. See the graphs of performance below.
Reference: samvera/active_fedora#1311
In the future, Hyrax will install with solr-suggest turned off by default. For now you need to modify the following to turn it off.
- make the same changes to both /solr/conf/solrconfig.xml AND /solr/config/solrconfig.xml
- comment out the following lines
<!-- TURN OFF SUGGEST - it causes performance issues -->
<!--
<searchComponent name="suggest" class="solr.SuggestComponent">
<lst name="suggester">
<str name="name">mySuggester</str>
<str name="lookupImpl">FuzzyLookupFactory</str>
<str name="suggestAnalyzerFieldType">textSuggest</str>
<str name="buildOnCommit">true</str>
<str name="field">suggest</str>
</lst>
</searchComponent>
<requestHandler name="/suggest" class="solr.SearchHandler" startup="lazy">
<lst name="defaults">
<str name="suggest">true</str>
<str name="suggest.count">5</str>
<str name="suggest.dictionary">mySuggester</str>
</lst>
<arr name="components">
<str>suggest</str>
</arr>
</requestHandler>
-->