Umbraco: Custom Validation Index with Flexible AWS Load Balancing on EBS

Does anyone have an example of how to do this?

I have a custom indexer configured ExamineSettings.configas follows:

<add name="KeywordsIndexer"
           type="Examine.LuceneEngine.Providers.SimpleDataIndexer, Examine"
           dataService="SearchIndexers.ParagraphKeywordIndexer"
           directoryFactory="Examine.LuceneEngine.Directories.TempEnvDirectoryFactory,Examine"
           indexTypes="KeywordIndexItem"/>

a search provider

<add name="KeywordsSearcher"
           indexSet="KeywordsIndexSet"
           enableLeadingWildcards="true"
           type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine"
           analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" />

and index index , inExamineIndex.config

<IndexSet SetName="KeywordsIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Keywords/" IndexParentId="1119">
    <IndexUserFields>
      <add Name="ParagraphId" />
      <add Name="ArticleId" />
      <add Name="ChapterId" />
      <add Name="Keywords1" />
      <add Name="Keywords2" />
      <add Name="Keywords3" />
      <add Name="Keywords4" />
      <add Name="Keywords5" />
      <add Name="Keywords6" />
      <add Name="Keywords7" />
      <add Name="Keywords8" />
      <add Name="Keywords9" />
      <add Name="Keywords10" />
    </IndexUserFields>
  </IndexSet>

Then I have a custom class that implements ISimpleDataServiceto query the content and create custom elements inserted into the index.

Backbuilder Index, , (1 , 1 https://aws.amazon.com/blogs/devops/run-umbraco-cms-with-flexible-load-balancing-on-aws/).

:

1) ? ( - / )

2) , , ?

docs - Azure, , , AWS EBS. " ", , , !

.

+4

Source: https://habr.com/ru/post/1695218/


All Articles