<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration</link><description /><dc:language>en-US</dc:language><generator>14.0.0.586 14</generator><item><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration</link><pubDate>Fri, 31 Jan 2020 19:06:02 GMT</pubDate><guid isPermaLink="false">7fc7a46d-2701-4fbb-982b-c73fd00944a6</guid><dc:creator>Kevin Cunningham</dc:creator><comments>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration#comments</comments><description>Current Revision posted to User Documentation by Kevin Cunningham on 01/31/2020 19:06:02&lt;br /&gt;
&lt;div class="table-of-contents"&gt;
&lt;h2&gt;&lt;a id="Table_of_Contents" name="Table_of_Contents"&gt;&lt;/a&gt;Table of Contents&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpq0"&gt;Memory Use&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr1"&gt;Running Multiple Communities on a single solr instance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr2"&gt;Multiple Instances&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr3"&gt;Solr Cloud&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#reset_the_index"&gt;Rebuilding the Index&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dvuftqep0"&gt;Rebuilding the search index from Administration&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dvuftqep1"&gt;Manually rebuilding the search index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr4"&gt;Additional Topics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h2 id="mcetoc_1dll0tgpq0"&gt;&lt;a id="Memory_Use" name="Memory_Use"&gt;&lt;/a&gt;Memory Use&lt;/h2&gt;
&lt;p&gt;By default, solr is configured to use 512MB of memory. &amp;nbsp;For larger indexes, this may not be enough. &amp;nbsp;To do this, you&amp;#39;ll need to open up &lt;code&gt;bin\solr.in.cmd&lt;/code&gt; in the Search installation directory. &amp;nbsp;At the bottom of the file, add the following line&amp;nbsp;(Replacing 1g with the amount of memory you want to assign):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="bat"&gt;set SOLR_HEAP=1g&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Save the file, then restart the Search service. &amp;nbsp;You can verify the new memory limit has been applied by looking at the JVM-Memory graph on the solr dashboard. &amp;nbsp;The dark grey bar shows how much memory solr is currently using, whilst the lighter gray shows how much memory is available for solr to use.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr1"&gt;&lt;a id="Running_Multiple_Communities_on_a_single_solr_instance" name="Running_Multiple_Communities_on_a_single_solr_instance"&gt;&lt;/a&gt;Running Multiple Communities on a single solr instance&lt;/h2&gt;
&lt;p&gt;If you need to run multiple instances of Telligent Community, rather than setting up&amp;nbsp;separate instances of solr you can host multiple cores in the same instance of solr. &amp;nbsp;(Much like you can host multiple databases inside a single instance of SQL Server)&lt;/p&gt;
&lt;p&gt;Each core needs to be given a name, as well as the name of a config set that contains the configuration for the config set. &amp;nbsp;These config sets can be found at &lt;code&gt;data/home/configsets&lt;/code&gt; . These&amp;nbsp;can be created through solr&amp;#39;s HTTP API. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-content-cb15392&amp;amp;name=mycommunity-content
POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-conversations-de63a3d&amp;amp;name=mycommunity-conversations&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you do host indexes for multiple communities on a single instance, we recommend you remove the default indexes and re-create them with your own names - that way you don&amp;#39;t risk cross contaminating your communities if you leave two instances&amp;nbsp;pointing at the default cores.&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr2"&gt;&lt;a id="Multiple_Instances" name="Multiple_Instances"&gt;&lt;/a&gt;Multiple Instances&lt;/h2&gt;
&lt;p&gt;In general, you should prefer setting up multiple cores on a single instance rather than set up multiple instances of Telligent Search. &amp;nbsp;If you really need to set up multiple instances rather than multiple cores, you can provide some additional options to the install script&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;.\ServiceInstall.ps1 -ServiceName &amp;#39;MyCommunitySearch&amp;#39; -DisplayName &amp;#39;MyCommunity Search&amp;#39; -Port 6789&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For more details,&amp;nbsp;use PowerShell&amp;#39;s Get-Help function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;Get-Help .\ServiceInstall.ps1&lt;/pre&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr3"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Solr Cloud&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://cwiki.apache.org/confluence/display/solr/SolrCloud"&gt;Solr Cloud&lt;/a&gt;&amp;nbsp;allows you to setup solr up as in a highly available active-active cluster. &amp;nbsp;Refer to the solr documentation for details on how to set this up.&lt;/p&gt;
&lt;p&gt;Note that solr cloud is non trivial to set up - if you&amp;#39;re not careful you can set up a cluster that is less reliable than a single node.&lt;/p&gt;
&lt;h2 id="reset_the_index"&gt;&lt;a id="Rebuilding_the_Index" name="Rebuilding_the_Index"&gt;&lt;/a&gt;Rebuilding the Index&lt;/h2&gt;
&lt;p&gt;Under extreme circumstances (e.g. corrupted data, version upgrade incompatibility) you may need to rebuild/reset your search indexes.This can be done through the administration within the site or manually.&lt;/p&gt;
&lt;p&gt;Keep in mind the following prior to rebuilding your index on a live site:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;During the re-indexing period your search services will not be fully functional on your site.&lt;/li&gt;
&lt;li&gt;You will not get all of the search results returned until the search process has finished. Content that has been indexed at the time of the search will be returned.&lt;/li&gt;
&lt;li&gt;The indexing service can be processor intensive so you may want to perform these operations in off hours.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="mcetoc_1dvuftqep0"&gt;&lt;a id="Rebuilding_the_search_index_from_Administration" name="Rebuilding_the_search_index_from_Administration"&gt;&lt;/a&gt;Rebuilding the search index from Administration&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;As an administrator, go to Administration -&amp;gt; Site -&amp;gt; Search.&lt;/li&gt;
&lt;li&gt;Deselect all types and click Save. Note: If you are intentionally not indexing certain types (ex. status messages), remember to keep those types disabled on the next step.&lt;/li&gt;
&lt;li&gt;Re-enable all types you want indexed and click Save.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="mcetoc_1dvuftqep1"&gt;&lt;a id="Manually_rebuilding_the_search_index" name="Manually_rebuilding_the_search_index"&gt;&lt;/a&gt;Manually rebuilding the search index&lt;/h3&gt;
&lt;p&gt;There are two cores (indexes) within the Solr instance, &amp;quot;telligent-content&amp;quot; and &amp;quot;telligent-conversations&amp;quot; To delete one or both of the cores the following tasks need to be performed:&lt;/p&gt;
&lt;h4 style="padding-left:30px;" id="delete_the_existing_index"&gt;&lt;a name="Delete_the_existing_index"&gt;&lt;/a&gt;Delete the existing&amp;nbsp;cores indexes&lt;/h4&gt;
&lt;p&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Stop the &amp;quot;Telligent Search&amp;quot; service using the Windows Services MMC.&lt;/li&gt;
&lt;li&gt;Navigate to the &amp;quot;telligent-content&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-content\data\) and delete the data folder.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;If also re-indexing conversations, n&lt;span&gt;avigate to the &amp;quot;&lt;/span&gt;telligent&lt;span&gt;-conversations&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-conversations\) and delete the data &lt;/span&gt;&lt;span&gt;folder.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Restart the &amp;quot;Telligent Search&amp;quot; service.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4 style="padding-left:30px;" id="set_the_content_to_be_reindexed"&gt;&lt;a name="Set_the_content_to_be_reindexed"&gt;&lt;/a&gt;Set the content to be re-indexed&lt;/h4&gt;
&lt;p style="padding-left:30px;"&gt;To set the content to be re-indexed, you need access to the Community database where the content is contained to run SQL scripts against the database.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;Execute the following to reset all &lt;strong&gt;content (this does not include conversations)&lt;/strong&gt;:&lt;/p&gt;
&lt;div style="padding-left:30px;"&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;padding-left:30px;"&gt;
&lt;div class="evolution-code-editor theme-clouds" style="padding-left:30px;"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:72px;padding-left:30px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;exec te_SearchIndex_ReindexAllDefaultContentTypes&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p style="padding-left:30px;"&gt;Execute the following to reset all &lt;strong&gt;conversations&lt;/strong&gt;:&lt;/p&gt;
&lt;div style="padding-left:30px;"&gt;
&lt;div style="padding-left:30px;"&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;padding-left:30px;"&gt;
&lt;div class="evolution-code-editor theme-clouds" style="padding-left:30px;"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:14.4px;padding-left:30px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;update dbo.te_ConversationMessages set IsIndexed = 0&lt;/pre&gt;&lt;br /&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:hidden;position:absolute;top:0px;white-space:pre;width:auto;"&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;div style="font-family:inherit;font-size:inherit;font-style:inherit;height:auto;left:0px;line-height:inherit;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr4"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Additional Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Read about the [[Solr changes in 11.0]].&lt;/li&gt;
&lt;li&gt;Learn how Verint Community now leverages [[Synonyms]] to improve search.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: solr&lt;/div&gt;
</description></item><item><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration/revision/6</link><pubDate>Fri, 01 Nov 2019 21:18:15 GMT</pubDate><guid isPermaLink="false">7fc7a46d-2701-4fbb-982b-c73fd00944a6</guid><dc:creator>Ramzi Banna</dc:creator><comments>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration#comments</comments><description>Revision 6 posted to User Documentation by Ramzi Banna on 11/01/2019 21:18:15&lt;br /&gt;
&lt;div class="table-of-contents"&gt;
&lt;h2&gt;&lt;a id="Table_of_Contents" name="Table_of_Contents"&gt;&lt;/a&gt;Table of Contents&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpq0"&gt;Memory Use&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr1"&gt;Running Multiple Communities on a single solr instance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr2"&gt;Multiple Instances&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr3"&gt;Solr Cloud&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#reset_the_index"&gt;Rebuilding the Index&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#delete_the_existing_index"&gt;Delete the existing&amp;nbsp;cores&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#set_the_content_to_be_reindexed"&gt;Set the content to be reindexed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#things_to_keep_in_mind"&gt;Things to keep in mind&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr4"&gt;Additional Topics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h2 id="mcetoc_1dll0tgpq0"&gt;&lt;a id="Memory_Use" name="Memory_Use"&gt;&lt;/a&gt;Memory Use&lt;/h2&gt;
&lt;p&gt;By default, solr is configured to use 512MB of memory. &amp;nbsp;For larger indexes, this may not be enough. &amp;nbsp;To do this, you&amp;#39;ll need to open up &lt;code&gt;bin\solr.in.cmd&lt;/code&gt; in the Search installation directory. &amp;nbsp;At the bottom of the file, add the following line&amp;nbsp;(Replacing 1g with the amount of memory you want to assign):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="bat"&gt;set SOLR_HEAP=1g&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Save the file, then restart the Search service. &amp;nbsp;You can verify the new memory limit has been applied by looking at the JVM-Memory graph on the solr dashboard. &amp;nbsp;The dark grey bar shows how much memory solr is currently using, whilst the lighter gray shows how much memory is available for solr to use.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr1"&gt;&lt;a id="Running_Multiple_Communities_on_a_single_solr_instance" name="Running_Multiple_Communities_on_a_single_solr_instance"&gt;&lt;/a&gt;Running Multiple Communities on a single solr instance&lt;/h2&gt;
&lt;p&gt;If you need to run multiple instances of Telligent Community, rather than setting up&amp;nbsp;separate instances of solr you can host multiple cores in the same instance of solr. &amp;nbsp;(Much like you can host multiple databases inside a single instance of SQL Server)&lt;/p&gt;
&lt;p&gt;Each core needs to be given a name, as well as the name of a config set that contains the configuration for the config set. &amp;nbsp;These config sets can be found at &lt;code&gt;data/home/configsets&lt;/code&gt; . These&amp;nbsp;can be created through solr&amp;#39;s HTTP API. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-content-cb15392&amp;amp;name=mycommunity-content
POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-conversations-de63a3d&amp;amp;name=mycommunity-conversations&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you do host indexes for multiple communities on a single instance, we recommend you remove the default indexes and re-create them with your own names - that way you don&amp;#39;t risk cross contaminating your communities if you leave two instances&amp;nbsp;pointing at the default cores.&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr2"&gt;&lt;a id="Multiple_Instances" name="Multiple_Instances"&gt;&lt;/a&gt;Multiple Instances&lt;/h2&gt;
&lt;p&gt;In general, you should prefer setting up multiple cores on a single instance rather than set up multiple instances of Telligent Search. &amp;nbsp;If you really need to set up multiple instances rather than multiple cores, you can provide some additional options to the install script&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;.\ServiceInstall.ps1 -ServiceName &amp;#39;MyCommunitySearch&amp;#39; -DisplayName &amp;#39;MyCommunity Search&amp;#39; -Port 6789&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For more details,&amp;nbsp;use PowerShell&amp;#39;s Get-Help function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;Get-Help .\ServiceInstall.ps1&lt;/pre&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr3"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Solr Cloud&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://cwiki.apache.org/confluence/display/solr/SolrCloud"&gt;Solr Cloud&lt;/a&gt;&amp;nbsp;allows you to setup solr up as in a highly available active-active cluster. &amp;nbsp;Refer to the solr documentation for details on how to set this up.&lt;/p&gt;
&lt;p&gt;Note that solr cloud is non trivial to set up - if you&amp;#39;re not careful you can set up a cluster that is less reliable than a single node.&lt;/p&gt;
&lt;h2 id="reset_the_index"&gt;&lt;a id="Rebuilding_the_Index" name="Rebuilding_the_Index"&gt;&lt;/a&gt;Rebuilding the Index&lt;/h2&gt;
&lt;p&gt;Under extreme circumstances (e.g. corrupted data, version upgrade incompatibility) you may need to rebuild/reset your search indexes. There are two cores (indexes) within the Solr instance, &amp;quot;telligent-content&amp;quot; and &amp;quot;telligent-conversations&amp;quot; To delete one or both of the cores the following tasks need to be performed:&lt;/p&gt;
&lt;h3 id="delete_the_existing_index"&gt;&lt;a name="Delete_the_existing_index"&gt;&lt;/a&gt;Delete the existing&amp;nbsp;cores indexes&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Stop the &amp;quot;Telligent Search&amp;quot; service using the Windows Services MMC.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Navigate to the &amp;quot;telligent-content&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-content\data\) and delete the data folder.&amp;nbsp;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;If also re-indexing conversations, n&lt;span&gt;avigate to the &amp;quot;&lt;/span&gt;telligent&lt;span&gt;-conversations&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-conversations\) and delete the data &lt;/span&gt;&lt;span&gt;folder.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Restart the &amp;quot;Telligent Search&amp;quot; service.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="set_the_content_to_be_reindexed"&gt;&lt;a name="Set_the_content_to_be_reindexed"&gt;&lt;/a&gt;Set the content to be re-indexed&lt;/h3&gt;
&lt;p&gt;To set the content to be re-indexed, you need access to the Community database where the content is contained to run SQL scripts against the database.&lt;/p&gt;
&lt;p&gt;Execute the following to reset all &lt;strong&gt;content (this does not include conversations)&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:72px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;exec te_SearchIndex_ReindexAllDefaultContentTypes&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Execute the following to reset all &lt;strong&gt;conversations&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:14.4px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;update dbo.te_ConversationMessages set IsIndexed = 0&lt;/pre&gt;&lt;br /&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:hidden;position:absolute;top:0px;white-space:pre;width:auto;"&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;div style="font-family:inherit;font-size:inherit;font-style:inherit;height:auto;left:0px;line-height:inherit;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Keep in mind the following prior to rebuilding your index on a live site:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;During the re-indexing period your search services will not be fully functional on your site.&lt;/li&gt;
&lt;li&gt;You will not get all of the search results returned until the search process has finished. Content that has been indexed at the time of the search will be returned.&lt;/li&gt;
&lt;li&gt;The indexing service can be processor intensive so you may want to perform these operations in off hours.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="mcetoc_1dll0tgpr4"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Additional Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Read about the [[Solr changes in 11.0]].&lt;/li&gt;
&lt;li&gt;Learn how Verint Community now leverages [[Synonyms]] to improve search.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: solr&lt;/div&gt;
</description></item><item><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration/revision/5</link><pubDate>Wed, 25 Sep 2019 20:33:00 GMT</pubDate><guid isPermaLink="false">7fc7a46d-2701-4fbb-982b-c73fd00944a6</guid><dc:creator>Kevin Cunningham</dc:creator><comments>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration#comments</comments><description>Revision 5 posted to User Documentation by Kevin Cunningham on 09/25/2019 20:33:00&lt;br /&gt;
&lt;div class="table-of-contents"&gt;
&lt;h2&gt;&lt;a id="Table_of_Contents" name="Table_of_Contents"&gt;&lt;/a&gt;Table of Contents&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpq0"&gt;Memory Use&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr1"&gt;Running Multiple Communities on a single solr instance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr2"&gt;Multiple Instances&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr3"&gt;Solr Cloud&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#reset_the_index"&gt;Rebuilding the Index&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#delete_the_existing_index"&gt;Delete the existing&amp;nbsp;cores&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#set_the_content_to_be_reindexed"&gt;Set the content to be reindexed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#things_to_keep_in_mind"&gt;Things to keep in mind&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr4"&gt;Additional Topics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h2 id="mcetoc_1dll0tgpq0"&gt;&lt;a id="Memory_Use" name="Memory_Use"&gt;&lt;/a&gt;Memory Use&lt;/h2&gt;
&lt;p&gt;By default, solr is configured to use 512MB of memory. &amp;nbsp;For larger indexes, this may not be enough. &amp;nbsp;To do this, you&amp;#39;ll need to open up &lt;code&gt;bin\solr.in.cmd&lt;/code&gt; in the Search installation directory. &amp;nbsp;At the bottom of the file, add the following line&amp;nbsp;(Replacing 1g with the amount of memory you want to assign):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="bat"&gt;set SOLR_HEAP=1g&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Save the file, then restart the Search service. &amp;nbsp;You can verify the new memory limit has been applied by looking at the JVM-Memory graph on the solr dashboard. &amp;nbsp;The dark grey bar shows how much memory solr is currently using, whilst the lighter gray shows how much memory is available for solr to use.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr1"&gt;&lt;a id="Running_Multiple_Communities_on_a_single_solr_instance" name="Running_Multiple_Communities_on_a_single_solr_instance"&gt;&lt;/a&gt;Running Multiple Communities on a single solr instance&lt;/h2&gt;
&lt;p&gt;If you need to run multiple instances of Telligent Community, rather than setting up&amp;nbsp;separate instances of solr you can host multiple cores in the same instance of solr. &amp;nbsp;(Much like you can host multiple databases inside a single instance of SQL Server)&lt;/p&gt;
&lt;p&gt;Each core needs to be given a name, as well as the name of a config set that contains the configuration for the config set. &amp;nbsp;These config sets can be found at &lt;code&gt;data/home/configsets&lt;/code&gt; . These&amp;nbsp;can be created through solr&amp;#39;s HTTP API. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-content-cb15392&amp;amp;name=mycommunity-content
POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-conversations-de63a3d&amp;amp;name=mycommunity-conversations&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you do host indexes for multiple communities on a single instance, we recommend you remove the default indexes and re-create them with your own names - that way you don&amp;#39;t risk cross contaminating your communities if you leave two instances&amp;nbsp;pointing at the default cores.&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr2"&gt;&lt;a id="Multiple_Instances" name="Multiple_Instances"&gt;&lt;/a&gt;Multiple Instances&lt;/h2&gt;
&lt;p&gt;In general, you should prefer setting up multiple cores on a single instance rather than set up multiple instances of Telligent Search. &amp;nbsp;If you really need to set up multiple instances rather than multiple cores, you can provide some additional options to the install script&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;.\ServiceInstall.ps1 -ServiceName &amp;#39;MyCommunitySearch&amp;#39; -DisplayName &amp;#39;MyCommunity Search&amp;#39; -Port 6789&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For more details,&amp;nbsp;use PowerShell&amp;#39;s Get-Help function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;Get-Help .\ServiceInstall.ps1&lt;/pre&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr3"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Solr Cloud&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://cwiki.apache.org/confluence/display/solr/SolrCloud"&gt;Solr Cloud&lt;/a&gt;&amp;nbsp;allows you to setup solr up as in a highly available active-active cluster. &amp;nbsp;Refer to the solr documentation for details on how to set this up.&lt;/p&gt;
&lt;p&gt;Note that solr cloud is non trivial to set up - if you&amp;#39;re not careful you can set up a cluster that is less reliable than a single node.&lt;/p&gt;
&lt;h2 id="reset_the_index"&gt;&lt;a id="Rebuilding_the_Index" name="Rebuilding_the_Index"&gt;&lt;/a&gt;Rebuilding the Index&lt;/h2&gt;
&lt;p&gt;Under extreme circumstances (e.g. corrupted data, version upgrade incompatibility) you may need to rebuild/reset your search indexes. There are two cores (indexes) within the Solr instance, &amp;quot;telligent-content&amp;quot; and &amp;quot;telligent-conversations&amp;quot; To delete one or both of the cores the following tasks need to be performed:&lt;/p&gt;
&lt;h3 id="delete_the_existing_index"&gt;&lt;a name="Delete_the_existing_index"&gt;&lt;/a&gt;Delete the existing&amp;nbsp;cores indexes&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Stop the &amp;quot;Telligent Search&amp;quot; service using the Windows Services MMC.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Navigate to the &amp;quot;telligent-content&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-content\data\) and delete the data folder.&amp;nbsp;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;If also re-indexing conversations, n&lt;span&gt;avigate to the &amp;quot;&lt;/span&gt;telligent&lt;span&gt;-conversations&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-conversations\) and delete the data &lt;/span&gt;&lt;span&gt;folder.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Restart the &amp;quot;Telligent Search&amp;quot; service.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="set_the_content_to_be_reindexed"&gt;&lt;a name="Set_the_content_to_be_reindexed"&gt;&lt;/a&gt;Set the content to be re-indexed&lt;/h3&gt;
&lt;p&gt;To set the content to be re-indexed, you need access to the Community database where the content is contained to run SQL scripts against the database.&lt;/p&gt;
&lt;p&gt;Execute the following to reset all &lt;strong&gt;content (this does not include conversations)&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:72px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;exec te_SearchIndex_ReindexAllDefaultContentTypes&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Execute the following to reset all &lt;strong&gt;conversations&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:14.4px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;update dbo.te_ConversationMessages set IsIndexed = 0&lt;/pre&gt;&lt;br /&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:hidden;position:absolute;top:0px;white-space:pre;width:auto;"&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;div style="font-family:inherit;font-size:inherit;font-style:inherit;height:auto;left:0px;line-height:inherit;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Keep in mind the following prior to rebuilding your index on a live site:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;During the re-indexing period your search services will not be fully functional on your site.&lt;/li&gt;
&lt;li&gt;You will not get all of the search results returned until the search process has finished. Content that has been indexed at the time of the search will be returned.&lt;/li&gt;
&lt;li&gt;The indexing service can be processor intensive so you may want to perform these operations in off hours.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="mcetoc_1dll0tgpr4"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Additional Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Read about the [[Solr changes in 11.0]].&lt;/li&gt;
&lt;li&gt;Learn how Verint Community now leverages [[Synonyms]] to improve search.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item><item><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration/revision/4</link><pubDate>Wed, 25 Sep 2019 20:24:35 GMT</pubDate><guid isPermaLink="false">7fc7a46d-2701-4fbb-982b-c73fd00944a6</guid><dc:creator>Kevin Cunningham</dc:creator><comments>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration#comments</comments><description>Revision 4 posted to User Documentation by Kevin Cunningham on 09/25/2019 20:24:35&lt;br /&gt;
&lt;div class="table-of-contents"&gt;
&lt;h2&gt;&lt;a id="Table_of_Contents" name="Table_of_Contents"&gt;&lt;/a&gt;Table of Contents&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpq0"&gt;Memory Use&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr1"&gt;Running Multiple Communities on a single solr instance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr2"&gt;Multiple Instances&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr3"&gt;Solr Cloud&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#reset_the_index"&gt;Rebuilding the Index&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#delete_the_existing_index"&gt;Delete the existing&amp;nbsp;cores&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#set_the_content_to_be_reindexed"&gt;Set the content to be reindexed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#things_to_keep_in_mind"&gt;Things to keep in mind&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr4"&gt;Additional Topics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h2 id="mcetoc_1dll0tgpq0"&gt;&lt;a id="Memory_Use" name="Memory_Use"&gt;&lt;/a&gt;Memory Use&lt;/h2&gt;
&lt;p&gt;By default, solr is configured to use 512MB of memory. &amp;nbsp;For larger indexes, this may not be enough. &amp;nbsp;To do this, you&amp;#39;ll need to open up &lt;code&gt;bin\solr.in.cmd&lt;/code&gt; in the Search installation directory. &amp;nbsp;At the bottom of the file, add the following line&amp;nbsp;(Replacing 1g with the amount of memory you want to assign):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="bat"&gt;set SOLR_HEAP=1g&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Save the file, then restart the Search service. &amp;nbsp;You can verify the new memory limit has been applied by looking at the JVM-Memory graph on the solr dashboard. &amp;nbsp;The dark grey bar shows how much memory solr is currently using, whilst the lighter gray shows how much memory is available for solr to use.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr1"&gt;&lt;a id="Running_Multiple_Communities_on_a_single_solr_instance" name="Running_Multiple_Communities_on_a_single_solr_instance"&gt;&lt;/a&gt;Running Multiple Communities on a single solr instance&lt;/h2&gt;
&lt;p&gt;If you need to run multiple instances of Telligent Community, rather than setting up&amp;nbsp;separate instances of solr you can host multiple cores in the same instance of solr. &amp;nbsp;(Much like you can host multiple databases inside a single instance of SQL Server)&lt;/p&gt;
&lt;p&gt;Each core needs to be given a name, as well as the name of a config set that contains the configuration for the config set. &amp;nbsp;These config sets can be found at &lt;code&gt;data/home/configsets&lt;/code&gt; . These&amp;nbsp;can be created through solr&amp;#39;s HTTP API. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-content-cb15392&amp;amp;name=mycommunity-content
POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-conversations-de63a3d&amp;amp;name=mycommunity-conversations&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you do host indexes for multiple communities on a single instance, we recommend you remove the default indexes and re-create them with your own names - that way you don&amp;#39;t risk cross contaminating your communities if you leave two instances&amp;nbsp;pointing at the default cores.&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr2"&gt;&lt;a id="Multiple_Instances" name="Multiple_Instances"&gt;&lt;/a&gt;Multiple Instances&lt;/h2&gt;
&lt;p&gt;In general, you should prefer setting up multiple cores on a single instance rather than set up multiple instances of Telligent Search. &amp;nbsp;If you really need to set up multiple instances rather than multiple cores, you can provide some additional options to the install script&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;.\ServiceInstall.ps1 -ServiceName &amp;#39;MyCommunitySearch&amp;#39; -DisplayName &amp;#39;MyCommunity Search&amp;#39; -Port 6789&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For more details,&amp;nbsp;use PowerShell&amp;#39;s Get-Help function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;Get-Help .\ServiceInstall.ps1&lt;/pre&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr3"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Solr Cloud&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://cwiki.apache.org/confluence/display/solr/SolrCloud"&gt;Solr Cloud&lt;/a&gt;&amp;nbsp;allows you to setup solr up as in a highly available active-active cluster. &amp;nbsp;Refer to the solr documentation for details on how to set this up.&lt;/p&gt;
&lt;p&gt;Note that solr cloud is non trivial to set up - if you&amp;#39;re not careful you can set up a cluster that is less reliable than a single node.&lt;/p&gt;
&lt;h2 id="reset_the_index"&gt;&lt;a id="Rebuilding_the_Index" name="Rebuilding_the_Index"&gt;&lt;/a&gt;Rebuilding the Index&lt;/h2&gt;
&lt;p&gt;Under extreme circumstances (e.g. corrupted data, version upgrade incompatibility) you may need to rebuild/reset your search indexes. There are two cores (indexes) within the Solr instance, &amp;quot;telligent-content&amp;quot; and &amp;quot;telligent-conversations&amp;quot; To delete one or both of the cores the following tasks need to be performed:&lt;/p&gt;
&lt;h3 id="delete_the_existing_index"&gt;&lt;a name="Delete_the_existing_index"&gt;&lt;/a&gt;Delete the existing&amp;nbsp;cores indexes&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Stop the &amp;quot;Telligent Search&amp;quot; service using the Windows Services MMC.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Navigate to the &amp;quot;telligent-content&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-content\data\) and delete the data folder.&amp;nbsp;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;If also re-indexing conversations, n&lt;span&gt;avigate to the &amp;quot;&lt;/span&gt;telligent&lt;span&gt;-conversations&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-conversations\) and delete the data &lt;/span&gt;&lt;span&gt;folder.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Restart the &amp;quot;Telligent Search&amp;quot; service.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="set_the_content_to_be_reindexed"&gt;&lt;a name="Set_the_content_to_be_reindexed"&gt;&lt;/a&gt;Set the content to be re-indexed&lt;/h3&gt;
&lt;p&gt;To set the content to be re-indexed, you need access to the Community database where the content is contained to run SQL scripts against the database.&lt;/p&gt;
&lt;p&gt;Execute the following to reset all &lt;strong&gt;content&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:72px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;exec te_SearchIndex_ReindexAllDefaultContentTypes&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Execute e the following to reset all &lt;strong&gt;conversations&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:14.4px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;update dbo.te_ConversationMessages set IsIndexed = 0&lt;/pre&gt;&lt;br /&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:hidden;position:absolute;top:0px;white-space:pre;width:auto;"&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;div style="font-family:inherit;font-size:inherit;font-style:inherit;height:auto;left:0px;line-height:inherit;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Keep in mind the following prior to rebuilding your index on a live site:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;During the re-indexing period your search services will not be fully functional on your site.&lt;/li&gt;
&lt;li&gt;You will not get all of the search results returned until the search process has finished. Content that has been indexed at the time of the search will be returned.&lt;/li&gt;
&lt;li&gt;The indexing service can be processor intensive so you may want to perform these operations in off hours.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="mcetoc_1dll0tgpr4"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Additional Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Read about the [[Solr changes in 11.0]].&lt;/li&gt;
&lt;li&gt;Learn how Verint Community now leverages [[Synonyms]] to improve search.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item><item><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration/revision/3</link><pubDate>Wed, 25 Sep 2019 20:23:56 GMT</pubDate><guid isPermaLink="false">7fc7a46d-2701-4fbb-982b-c73fd00944a6</guid><dc:creator>Kevin Cunningham</dc:creator><comments>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration#comments</comments><description>Revision 3 posted to User Documentation by Kevin Cunningham on 09/25/2019 20:23:56&lt;br /&gt;
&lt;div class="table-of-contents"&gt;
&lt;h2&gt;&lt;a id="Table_of_Contents" name="Table_of_Contents"&gt;&lt;/a&gt;Table of Contents&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpq0"&gt;Memory Use&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr1"&gt;Running Multiple Communities on a single solr instance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr2"&gt;Multiple Instances&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr3"&gt;Solr Cloud&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#reset_the_index"&gt;Rebuilding the Index&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#delete_the_existing_index"&gt;Delete the existing&amp;nbsp;cores&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#set_the_content_to_be_reindexed"&gt;Set the content to be reindexed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#things_to_keep_in_mind"&gt;Things to keep in mind&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#mcetoc_1dll0tgpr4"&gt;Additional Topics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h2 id="mcetoc_1dll0tgpq0"&gt;&lt;a id="Memory_Use" name="Memory_Use"&gt;&lt;/a&gt;Memory Use&lt;/h2&gt;
&lt;p&gt;By default, solr is configured to use 512MB of memory. &amp;nbsp;For larger indexes, this may not be enough. &amp;nbsp;To do this, you&amp;#39;ll need to open up &lt;code&gt;bin\solr.in.cmd&lt;/code&gt; in the Search installation directory. &amp;nbsp;At the bottom of the file, add the following line&amp;nbsp;(Replacing 1g with the amount of memory you want to assign):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="bat"&gt;set SOLR_HEAP=1g&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Save the file, then restart the Search service. &amp;nbsp;You can verify the new memory limit has been applied by looking at the JVM-Memory graph on the solr dashboard. &amp;nbsp;The dark grey bar shows how much memory solr is currently using, whilst the lighter gray shows how much memory is available for solr to use.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr1"&gt;&lt;a id="Running_Multiple_Communities_on_a_single_solr_instance" name="Running_Multiple_Communities_on_a_single_solr_instance"&gt;&lt;/a&gt;Running Multiple Communities on a single solr instance&lt;/h2&gt;
&lt;p&gt;If you need to run multiple instances of Telligent Community, rather than setting up&amp;nbsp;separate instances of solr you can host multiple cores in the same instance of solr. &amp;nbsp;(Much like you can host multiple databases inside a single instance of SQL Server)&lt;/p&gt;
&lt;p&gt;Each core needs to be given a name, as well as the name of a config set that contains the configuration for the config set. &amp;nbsp;These config sets can be found at &lt;code&gt;data/home/configsets&lt;/code&gt; . These&amp;nbsp;can be created through solr&amp;#39;s HTTP API. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-content-cb15392&amp;amp;name=mycommunity-content
POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-conversations-de63a3d&amp;amp;name=mycommunity-conversations&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you do host indexes for multiple communities on a single instance, we recommend you remove the default indexes and re-create them with your own names - that way you don&amp;#39;t risk cross contaminating your communities if you leave two instances&amp;nbsp;pointing at the default cores.&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr2"&gt;&lt;a id="Multiple_Instances" name="Multiple_Instances"&gt;&lt;/a&gt;Multiple Instances&lt;/h2&gt;
&lt;p&gt;In general, you should prefer setting up multiple cores on a single instance rather than set up multiple instances of Telligent Search. &amp;nbsp;If you really need to set up multiple instances rather than multiple cores, you can provide some additional options to the install script&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;.\ServiceInstall.ps1 -ServiceName &amp;#39;MyCommunitySearch&amp;#39; -DisplayName &amp;#39;MyCommunity Search&amp;#39; -Port 6789&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For more details,&amp;nbsp;use PowerShell&amp;#39;s Get-Help function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;Get-Help .\ServiceInstall.ps1&lt;/pre&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1dll0tgpr3"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Solr Cloud&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://cwiki.apache.org/confluence/display/solr/SolrCloud"&gt;Solr Cloud&lt;/a&gt;&amp;nbsp;allows you to setup solr up as in a highly available active-active cluster. &amp;nbsp;Refer to the solr documentation for details on how to set this up.&lt;/p&gt;
&lt;p&gt;Note that solr cloud is non trivial to set up - if you&amp;#39;re not careful you can set up a cluster that is less reliable than a single node.&lt;/p&gt;
&lt;h2 id="reset_the_index"&gt;&lt;a id="Rebuilding_the_Index" name="Rebuilding_the_Index"&gt;&lt;/a&gt;Rebuilding the Index&lt;/h2&gt;
&lt;p&gt;Under extreme circumstances (e.g. corrupted data, version upgrade incompatibility) you may need to rebuild/reset your search indexes. There are two cores (indexes) within the Solr instance, &amp;quot;telligent-content&amp;quot; and &amp;quot;telligent-conversations&amp;quot; To delete one or both of the cores the following tasks need to be performed:&lt;/p&gt;
&lt;h3 id="delete_the_existing_index"&gt;&lt;a name="Delete_the_existing_index"&gt;&lt;/a&gt;Delete the existing&amp;nbsp;cores indexes&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Stop the &amp;quot;Telligent Search&amp;quot; service using the Windows Services MMC.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Navigate to the &amp;quot;telligent-content&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-content\data\) and delete the data folder.&amp;nbsp;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;If also re-indexing conversations, n&lt;span&gt;avigate to the &amp;quot;&lt;/span&gt;telligent&lt;span&gt;-conversations&amp;quot; core folder in the Solr home folder (ex. c:\Search\data\home\telligent-conversations\) and delete the data &lt;/span&gt;&lt;span&gt;folder.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Restart the &amp;quot;Telligent Search&amp;quot; service.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="set_the_content_to_be_reindexed"&gt;&lt;a name="Set_the_content_to_be_reindexed"&gt;&lt;/a&gt;Set the content to be re-indexed&lt;/h3&gt;
&lt;p&gt;To set the content to be re-indexed, you need access to the Community database where the content is contained to run SQL scripts against the database.&lt;/p&gt;
&lt;p&gt;Execute the following to reset all &lt;strong&gt;content&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:72px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;exec te_SearchIndex_ReindexAllDefaultContentTypes&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Execute e the following to reset all &lt;strong&gt;conversations&lt;/strong&gt;:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div class="content-scrollable-wrapper" style="overflow:auto;"&gt;
&lt;div class="evolution-code-editor theme-clouds"&gt;
&lt;div class=" ace_editor ace-clouds" style="height:14.4px;width:100%;"&gt;&lt;pre class="ui-code" data-mode="sql"&gt;update dbo.te_ConversationMessages set IsIndexed = 0&lt;/pre&gt;&lt;br /&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:hidden;position:absolute;top:0px;white-space:pre;width:auto;"&gt;
&lt;div style="font:inherit;height:auto;left:0px;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;div style="font-family:inherit;font-size:inherit;font-style:inherit;height:auto;left:0px;line-height:inherit;overflow:visible;position:absolute;top:0px;white-space:pre;width:auto;"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Keep in mind the following prior to building your index on a live site:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;During the re-indexing period your search services will not be fully functional on your site.&lt;/li&gt;
&lt;li&gt;You will not get all of the search results returned until the search process has finished. Content that has been indexed at the time of the search will be returned.&lt;/li&gt;
&lt;li&gt;The indexing service can be processor intensive so you may want to perform these operations in off hours.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="mcetoc_1dll0tgpr4"&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Additional Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Read about the [[Solr changes in 11.0]].&lt;/li&gt;
&lt;li&gt;Learn how Verint Community now leverages [[Synonyms]] to improve search.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item><item><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration/revision/2</link><pubDate>Thu, 18 Jul 2019 17:41:15 GMT</pubDate><guid isPermaLink="false">7fc7a46d-2701-4fbb-982b-c73fd00944a6</guid><dc:creator>Grant Pankonien</dc:creator><comments>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration#comments</comments><description>Revision 2 posted to User Documentation by Grant Pankonien on 07/18/2019 17:41:15&lt;br /&gt;
&lt;p&gt;[toc]&lt;/p&gt;
&lt;h2&gt;&lt;a id="Memory_Use" name="Memory_Use"&gt;&lt;/a&gt;Memory Use&lt;/h2&gt;
&lt;p&gt;By default, solr is configured to use 512MB of memory. &amp;nbsp;For larger indexes, this may not be enough. &amp;nbsp;To do this, you&amp;#39;ll need to open up &lt;code&gt;bin\solr.in.cmd&lt;/code&gt; in the Search installation directory. &amp;nbsp;At the bottom of the file, add the following line&amp;nbsp;(Replacing 1g with the amount of memory you want to assign):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="bat"&gt;set SOLR_HEAP=1g&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Save the file, then restart the Search service. &amp;nbsp;You can verify the new memory limit has been applied by looking at the JVM-Memory graph on the solr dashboard. &amp;nbsp;The dark grey bar shows how much memory solr is currently using, whilst the lighter gray shows how much memory is available for solr to use.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;&lt;a id="Running_Multiple_Communities_on_a_single_solr_instance" name="Running_Multiple_Communities_on_a_single_solr_instance"&gt;&lt;/a&gt;Running Multiple Communities on a single solr instance&lt;/h2&gt;
&lt;p&gt;If you need to run multiple instances of Telligent Community, rather than setting up&amp;nbsp;separate instances of solr you can host multiple cores in the same instance of solr. &amp;nbsp;(Much like you can host multiple databases inside a single instance of SQL Server)&lt;/p&gt;
&lt;p&gt;Each core needs to be given a name, as well as the name of a config set that contains the configuration for the config set. &amp;nbsp;These config sets can be found at &lt;code&gt;data/home/configsets&lt;/code&gt; . These&amp;nbsp;can be created through solr&amp;#39;s HTTP API. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-content-cb15392&amp;amp;name=mycommunity-content
POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-conversations-de63a3d&amp;amp;name=mycommunity-conversations&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you do host indexes for multiple communities on a single instance, we recommend you remove the default indexes and re-create them with your own names - that way you don&amp;#39;t risk cross contaminating your communities if you leave two instances&amp;nbsp;pointing at the default cores.&lt;/p&gt;
&lt;h2&gt;&lt;a id="Multiple_Instances" name="Multiple_Instances"&gt;&lt;/a&gt;Multiple Instances&lt;/h2&gt;
&lt;p&gt;In general, you should prefer setting up multiple cores on a single instance rather than set up multiple instances of Telligent Search. &amp;nbsp;If you really need to set up multiple instances rather than multiple cores, you can provide some additional options to the install script&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;.\ServiceInstall.ps1 -ServiceName &amp;#39;MyCommunitySearch&amp;#39; -DisplayName &amp;#39;MyCommunity Search&amp;#39; -Port 6789&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For more details,&amp;nbsp;use PowerShell&amp;#39;s Get-Help function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;Get-Help .\ServiceInstall.ps1&lt;/pre&gt;&lt;/p&gt;
&lt;h2&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Solr Cloud&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://cwiki.apache.org/confluence/display/solr/SolrCloud"&gt;Solr Cloud&lt;/a&gt;&amp;nbsp;allows you to setup solr up as in a highly available active-active cluster. &amp;nbsp;Refer to the solr documentation for details on how to set this up.&lt;/p&gt;
&lt;p&gt;Note that solr cloud is non trivial to set up - if you&amp;#39;re not careful you can set up a cluster that is less reliable than a single node.&lt;/p&gt;
&lt;h2&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Additional Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Read about the [[Solr changes in 11.0]].&lt;/li&gt;
&lt;li&gt;Learn how Verint Community now leverages [[Synonyms]] to improve search.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item><item><title>Advanced Solr Configuration</title><link>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration/revision/1</link><pubDate>Tue, 25 Jun 2019 20:31:03 GMT</pubDate><guid isPermaLink="false">7fc7a46d-2701-4fbb-982b-c73fd00944a6</guid><dc:creator>Former Member</dc:creator><comments>https://community.telligent.com/community/11/w/user-documentation/67199/advanced-solr-configuration#comments</comments><description>Revision 1 posted to User Documentation by Former Member on 06/25/2019 20:31:03&lt;br /&gt;
&lt;p&gt;[toc]&lt;/p&gt;
&lt;h2&gt;&lt;a id="Memory_Use" name="Memory_Use"&gt;&lt;/a&gt;Memory Use&lt;/h2&gt;
&lt;p&gt;By default, solr is configured to use 512MB of memory. &amp;nbsp;For larger indexes, this may not be enough. &amp;nbsp;To do this, you&amp;#39;ll need to open up &lt;code&gt;bin\solr.in.cmd&lt;/code&gt; in the Search installation directory. &amp;nbsp;At the bottom of the file, add the following line&amp;nbsp;(Replacing 1g with the amount of memory you want to assign):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="bat"&gt;set SOLR_HEAP=1g&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Save the file, then restart the Search service. &amp;nbsp;You can verify the new memory limit has been applied by looking at the JVM-Memory graph on the solr dashboard. &amp;nbsp;The dark grey bar shows how much memory solr is currently using, whilst the lighter gray shows how much memory is available for solr to use.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-wikis-components-files/00-00-00-12-80/pastedimage1487945244261v2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;&lt;a id="Running_Multiple_Communities_on_a_single_solr_instance" name="Running_Multiple_Communities_on_a_single_solr_instance"&gt;&lt;/a&gt;Running Multiple Communities on a single solr instance&lt;/h2&gt;
&lt;p&gt;If you need to run multiple instances of Telligent Community, rather than setting up&amp;nbsp;separate instances of solr you can host multiple cores in the same instance of solr. &amp;nbsp;(Much like you can host multiple databases inside a single instance of SQL Server)&lt;/p&gt;
&lt;p&gt;Each core needs to be given a name, as well as the name of a config set that contains the configuration for the config set. &amp;nbsp;These config sets can be found at &lt;code&gt;data/home/configsets&lt;/code&gt; . These&amp;nbsp;can be created through solr&amp;#39;s HTTP API. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-content-cb15392&amp;amp;name=mycommunity-content
POST http://localhost:8983/solr/admin/cores?action=CREATE&amp;amp;configSet=telligent-conversations-de63a3d&amp;amp;name=mycommunity-conversations&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you do host indexes for multiple communities on a single instance, we recommend you remove the default indexes and re-create them with your own names - that way you don&amp;#39;t risk cross contaminating your communities if you leave two instances&amp;nbsp;pointing at the default cores.&lt;/p&gt;
&lt;h2&gt;&lt;a id="Multiple_Instances" name="Multiple_Instances"&gt;&lt;/a&gt;Multiple Instances&lt;/h2&gt;
&lt;p&gt;In general, you should prefer setting up multiple cores on a single instance rather than set up multiple instances of Telligent Search. &amp;nbsp;If you really need to set up multiple instances rather than multiple cores, you can provide some additional options to the install script&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;.\ServiceInstall.ps1 -ServiceName &amp;#39;MyCommunitySearch&amp;#39; -DisplayName &amp;#39;MyCommunity Search&amp;#39; -Port 6789&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For more details,&amp;nbsp;use PowerShell&amp;#39;s Get-Help function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;Get-Help .\ServiceInstall.ps1&lt;/pre&gt;&lt;/p&gt;
&lt;h2&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Solr Cloud&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://cwiki.apache.org/confluence/display/solr/SolrCloud"&gt;Solr Cloud&lt;/a&gt;&amp;nbsp;allows you to setup solr up as in a highly available active-active cluster. &amp;nbsp;Refer to the solr documentation for details on how to set this up.&lt;/p&gt;
&lt;p&gt;Note that solr cloud is non trivial to set up - if you&amp;#39;re not careful you can set up a cluster that is less reliable than a single node.&lt;/p&gt;
&lt;h2&gt;&lt;a id="Solr_Cloud" name="Solr_Cloud"&gt;&lt;/a&gt;Additional Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Read about the [[Solr changes in 11.0]].&lt;/li&gt;
&lt;li&gt;Learn how Verint Community now leverages [[Synonyms]] to improve search.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item></channel></rss>