[Dspace-tech] OAI Import Error

2015-02-18 Thread Daan Lessing
Good morning, We are using DSpace 4.2 When running the following command dspace-run/bin/dspace oai import -c to import SOLR Indexes it runs 100% until I get the following error; 4800 items imported so far... 4900 items imported so far... 5000 items imported so far... 5100 items

Re: [Dspace-tech] OAI Import Error

2015-02-18 Thread helix84
https://github.com/DSpace/DSpace/blob/dspace-4.2/dspace-oai/src/main/java/org/dspace/xoai/app/XOAI.java#L275 The problem is that the item you're indexing has a submitter with empty email field. You need to find out which item it is and correct the submitter's email. Run the import again and in

Re: [Dspace-tech] OAI Import Error

2015-02-18 Thread Hilton Gibson
Hi Daan Looking into it, I see that a scheduled job is not in the recommended crontab. https://wiki.duraspace.org/display/DSDOC4x/OAI+2.0+Server#OAI2.0Server-UsingSolr https://wiki.duraspace.org/display/DSDOC4x/Scheduled+Tasks+via+Cron Maybe the DSpace docs need updating. I am going to add the

Re: [Dspace-tech] OAI Import Error

2015-02-18 Thread Adan Roman
Good morning It semms that you have an item without submitter (or with an incorrect one). Check your database, table item, searching for it. select * from item where submitter_id not in (select eperson_id from eperson) or submitter_id is null good luck Good morning, We are using DSpace 4.2