Skip to main content

SharePoint 2007 Enterprise Search Architecture

The following is an illustration accompanying an article published on Microsoft, an independent research firm focused exclusively on Microsoft strategy & technology.



Enterprise search in SharePoint Server 2007 depends on two main components. An indexing service on a central server crawls enterprise data resources and builds full-text indexes to speed search. Query servers allow users to conduct searches. (In small-scale deployments, the indexing and query server can be combined on a single machine.)

Out of the box, the SharePoint Server 2007 indexing service reads data from more than 200 types of sources, including SharePoint sites, HTML pages on other types of intranet sites, files on file servers, Exchange Public Folders, and Lotus Notes databases. The service can be extended to index more data types by installing additional iFilters, which are usually written by third-party ISVs or partners. A separate technology known as protocol handlers lets the indexing service retrieve data over different types of connections, such as the Hypertext Transfer Protocol (HTTP) or the File Transfer Protocol (FTP). The Business Data Catalog service, available in the full version of SharePoint Server 2007, integrates data from business applications (e.g., an ERP application) into SharePoint Server 2007, allowing the indexing service to index data from these applications without requiring custom iFilters or protocol handlers.

In SharePoint Server 2007, indexes created by the indexing service propagate continuously to query servers, even while the indexing service is rebuilding indexes with new information. Users conduct queries against the indexes on the query servers through the Web-based Search Center user interface, or a search Web Part.

For most situations, Microsoft recommends that organizations have only one server running the indexing service, because indexing requires significant computing resources both on the indexing machine and the machines being crawled. However, farms of servers can host multiple indexing services, each of which can crawl a different but overlapping set of resources; each query server can then be limited to a particular index (not shown in the illustration). Microsoft recommends this only in situations where security or regulation requires strict segregation between divisions of an organization—for example, between stock analysts and investment bankers

Comments

Popular posts from this blog

How to get SPUser or SPGroup from Person or Group field

You have person or group field in SharePoint list and you want to programmatically get the user or person. The below code to gets SPUser from User or Group field in the list when multiple choice and Groups are not allowed in the field: //get SPUser SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValue userFieldValue = (SPFieldUserValue)userField.GetFieldValue(item["Users"].ToString()); SPUser user = userFieldValue.User; This part of code would help you to get SPUser when multiple choice is allowed and groups are not allowed: //Multiple choices are allowed SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString()); foreach (SPFieldUserValue userFieldValue in userFieldValueCollection) {     Console.WriteLine("     " + userFieldValue.User.LoginName); } And when group

SharePoint publishing page scheduling

In SharePoint 2010 publishing enabled team site collection is not showing schedule button in publish ribbon. Solution: Here is how to enable it  though the UI: Locate the SharePoint Server Web site on which you want to enable content approval and item scheduling. Click  Site Actions , click  Site Settings , and then click  Modify Pages Library Settings . Under  General Settings , click  Versioning Settings . Click  Yes  next to  Content Approval , and then click  OK . Click  Manage item scheduling .   Click to enable the  Enable scheduling of items in this list  check box, and then click  OK .

Changing Content Type Hub URL

Change the Hub URL through powershell by using: Set-SPMetadataServiceApplication -Identity " " -HubURI " " For Ex: Set-SPMetadataServiceApplication -Identity "Managed Metadata Service" -HubURI "http://contenttype.Domain.Com" When you try to do this you get this rather scary message: This is SharePoint telling you that this is a major thing so be careful! Essentially all your content types that you have published out will be removed if they can, and you have to republish all of your content types out again which can cause some issue.