zoukankan      html  css  js  c++  java
  • SharePoint 2013中的Index Partition的一个小问题

    前面的文章中, 我用脚本配置了一个Search Service Applicaiton, 修改了拓扑逻辑.

    但是笔者在search administration中发现了下面的小问题.

    image

    这个(2)是什么意思?

    笔者仔细查看, 发现原来三十多个G的index文件, 在修改index文件位置后了的文件夹中只有十六个G左右.

    笔者想要的是index文件全部转移到一个文件夹下, 而现在看起来似乎index文件被分成了两份, 放在同一个运行着Index Partition 0的服务器上.

    来, PowerShell看看.

    $ssa = Get-SPEnterpriseSearchServiceApplication
    $currentActiveTopo = Get-SPEnterpriseSearchTopology -SearchApplication $ssa | Where-Object {$_.State -eq "Active"}
    $components = $currentActiveTopo.GetComponents()
    $components_app2=$components | Where-Object {$_.ServerName -eq "APP2-SPS2013"}
    $components_app2 
    

    果然有两个Index Component.

    image

    我们学到了什么?

    在SharePoint 2013中, 同一台server上如果运行同一个Index Partition的有两个IndexComponent, 那么就相当于在一台server上有了两个Index Partition. –_-||

    还是移除那个原装的IndexComponent吧.

    使用到的PowerShell命令是Remove-SPEnterpriseSearchComponent.

    参考资料

    ============================

    Manage search components in SharePoint Server 2013

    http://technet.microsoft.com/en-us/library/jj862354.aspx

  • 相关阅读:
    MFC的奇异non-modality模态对话框
    用于对话框,窗体视图,对话框和属性类型的布局管理器
    在。net中定制OpenFileDialog
    NFS的使用
    snmp-get
    zabbix-trap
    部署
    /etc/rc.local
    gj的交换机在升级了ios之后最新数据不刷新,
    计算型监控项
  • 原文地址:https://www.cnblogs.com/awpatp/p/2953437.html
Copyright © 2011-2022 走看看