最近碰到一个新的需求,就是要给SharePoint配置应用程序商店,挺有意思的,就简单的配置和记录了一下,分享给大家。 其实应用程序商店之前感觉很鸡肋,但是用起来还是不错的。不喜勿喷,......
2021-06-25 715 SharePoint配置应用程序商店
roblem: NodeRunner.exe is consuming a lot of memory and CPU resulted in performance issues on SharePoint 2013 server.
Solution:
NodeRunner.exe is a SharePoint 2013 Search service component and it is resource hungry. To reduce the CPU and Memory impact of this process, follow below steps:
Step 1: Reduce the CPU impact of the search service
By default SharePoint search uses "maximum" to speed up its search crawling process. To reduce the CPU usage of the search service, run this PowerShell script from any one of your SharePoint 2013 server:
Set-SPEnterpriseSearchService -PerformanceLevel Reduced
This sets Search Service Application crawl component to use less number of threads.
Step 2: Limit the NodeRunner.exe's Memory usage:
Step 3: Restart Search Service
For the above steps to take effect, You have to restart SharePoint 2013 search service. Go to Services console, restart SharePoint Search Host Controller process. Or use the PowerShell cmdlet to restart Search host controller process:
Restart-Service SPSearchHostController
The downside of the above changes: Since you are restricting resources to SharePoint search service, it increases search crawl time!
Do not limit node runner memory in Production Servers!Instead try increasing the Memory on SharePoint Production servers.PowerShell to Set NodeRunner config:
#NodeRunner File Path $NRFile= "C:\Program Files\Microsoft Office Servers\15.0\Search\Runtime\1.0\noderunner.exe.config" #Get the XML $NodeRunnerConfig = New-Object XML $NodeRunnerConfig.Load($NRFile) #Set Limit to 100 MB $NodeRunnerConfig.configuration.nodeRunnerSettings.memoryLimitMegabytes = "100" $NodeRunnerConfig.Save($NRFile)
标签: How Limit NodeRunner.exe High Memory CPU Usage roblem
相关文章
最近碰到一个新的需求,就是要给SharePoint配置应用程序商店,挺有意思的,就简单的配置和记录了一下,分享给大家。 其实应用程序商店之前感觉很鸡肋,但是用起来还是不错的。不喜勿喷,......
2021-06-25 715 SharePoint配置应用程序商店
配置SharePoint 2016的配置向导中,第三步创建配置数据库报错,然后百度、谷歌了一下,都没有解决,自己看日志搞定,也许会有人遇到类似问题,分享一下。 1、配置向导的错误截图,如下图:......
2021-06-25 446 SharePoint配置向导报错
本文介绍如何在Office 365中创建SharePoint网站集。 通过登录地址登录到Office 365环境中,我们可以在左上角的按钮中点开,进入管理员,也可以直接在页面中点击管理; 登录地址:https://login.mic......
2021-06-25 766 SharePoint创建网站集
最近有个新需求,用户希望标题栏可以拖动宽度,其实觉得没什么用,既然用户要了又推不掉,就勉为其难实现一下吧。 其实原理比较简单,就是利用JavaScript对标题栏进行宽度控制,然后从网......
2021-06-25 167 SharePoint列表标题列宽度可拖动
在SharePoint Online中使用Designer报错,错误为:This Feature has been disabled by your administrator.找了好久发现原因,分享给大家。 1、在SharePoint Online的列表中,点击编辑列表,如下图: 2、弹出确认对话......
2021-06-25 122 使用Designer报错