Answered by:
Search - Server ran out of memory

Question
-
In the crawl log I see some
1)
"Processing this item failed because the parser server ran out of memory. ( Error parsing document.....) - Document failed to be processed. It probably crashed the server.; Item truncated"It's PowerPoint presentations that is > 117MB - how can I fix this error?
2) when Cont. Crawl is enabled on several content sources - and a full crawl is scheduled - shouldn't SharePoint start/switch between these automatically?
- Edited by JmATK Tuesday, June 30, 2015 6:06 AM
Tuesday, June 30, 2015 5:22 AM
Answers
-
I ended up adding a rule to not crawl these items. Reading up on this, I can unzip with Windows native.
New-SPEnterpriseSearchCrawlRule -SearchApplication $SEARCHAPP -Path "*://*.zip*" -CrawlAsHttp 1 -Type ExclusionRule
According to the error message, it can be caused by the document cannot be parsed.
Which is the extension of the document?
For your issue, you can try to implement a custom iFilter for this extension in SharePoint 2013:
http://blogs.msdn.com/b/stevennicolaou/archive/2012/11/07/change-the-default-ifilter-handler.aspx
Also you can have a look at the similar thread:
If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/
- Marked as answer by JmATK Monday, August 15, 2016 5:23 AM
Tuesday, June 30, 2015 6:31 AM
All replies
-
I ended up adding a rule to not crawl these items. Reading up on this, I can unzip with Windows native.
New-SPEnterpriseSearchCrawlRule -SearchApplication $SEARCHAPP -Path "*://*.zip*" -CrawlAsHttp 1 -Type ExclusionRule
According to the error message, it can be caused by the document cannot be parsed.
Which is the extension of the document?
For your issue, you can try to implement a custom iFilter for this extension in SharePoint 2013:
http://blogs.msdn.com/b/stevennicolaou/archive/2012/11/07/change-the-default-ifilter-handler.aspx
Also you can have a look at the similar thread:
If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/
- Marked as answer by JmATK Monday, August 15, 2016 5:23 AM
Tuesday, June 30, 2015 6:31 AM -
the extension is .pptx...Tuesday, June 30, 2015 6:48 AM