-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add Timeout Configuration Option for Solr Harvests + multiple PIDs and Deep harvest #107
Comments
So adding this here as per @alliomeria debugging This is what happens when we hit a timeout on a very slow server with infinite number of fields
Means we can also, in case of this react better, still dump what we managed to get into CSV and avoid total warning but still let the user know at which ROW number this failed and give an error that allow the harvest to be tried again |
This also touches #47 |
@DiegoPino Noting per our discussion--consider also removing the option to uncheck / hide Auto UUID generation option for the Solr Importer set options. |
Implemented and also improved on |
What?
Sometimes you need a little more time for harvesting data-heavy solr documents (👀❤️ Mega Metadata Fans). Current AMI default is 5 seconds.
Per @DiegoPino, an option to adjust to a greater amount of time, such as 10 seconds (or even more+), will be helpful to have available via the administrative interface.
In the meantime:
You can manually update your local copy of SolrImporter.php.
$adapter = new SolariumCurl(); // or any other adapter implementing AdapterInterface
$adapter = new SolariumCurl(); // or any other adapter implementing AdapterInterface $adapter->setTimeout(10);
setTimeout
option; Adjust higher if needed.The text was updated successfully, but these errors were encountered: