To resolve this issue, you will need to modify the Solr schema configuration to define the 'author_value' field. You can do this by adding a new field definition to the schema.xml file in the Solr configuration directory.
Here are the steps you can follow to modify the Solr schema:
Open the schema.xml file in a text editor.
Locate the <fields> section in the schema.xml file.
Add a new field definition for 'author_value'. For example, the following XML code can be added:
<field name="author_value" type="text_general" indexed="true" stored="true"/>Save the schema.xml file.
Restart Solr to apply the changes.