Sitecore 8.1: Purpose of Submit Queue and MediaIndexing folders under $(dataFolder)

馋奶兔 提交于 2020-01-06 21:13:53

问题


Could someone please help me understand purspose of following folders under data sitecore folder:

  1. Submit Queue

    a. What's the purpose of this folder?

    b. Does it get used only if we use Sitecore xDB Cloud or also for our standalone xDB?

  2. MediaIndexing

    a. What's the purpose?

    b. Where can I find the folder path configuration details? I looked at sitecore.config and didn't find it.

    c. When doese it get created, as I understand the temp media files are sstored on mediacache folder and indexes should go corresponding master/web indexes.


回答1:


The submit queue folder is used by analytics to queue things if the db isn't accessible.

Have a look in your showconfig page for:

<setting name="Analytics.UseSubmitQueue" value="true" patch:source="Sitecore.Analytics.Tracking.config"/>

This is then configured as:

<submitQueue patch:source="Sitecore.Analytics.Tracking.config">
    <queue type="Sitecore.Analytics.Data.DataAccess.SubmitQueue.FileSubmitQueue, Sitecore.Analytics" singleInstance="true"/>

In the FileSubmitQueue ctor you have

FileSubmitQueue.FolderPath = System.IO.Path.Combine(MainUtil.MapPath(Settings.DataFolder), "Submit Queue"); 

Both xDB cloud and onsite xDB could suffer the same issue of the db erroring or causing issues. There isn't any config which ties it to a specific implementation (ie local vs cloud).

For the media questions, have you looked at https://community.sitecore.net/technical_blogs/b/sitecore_7_development_team/posts/media-content-indexing-updates-in-sitecore-7-2 ?



来源:https://stackoverflow.com/questions/35098744/sitecore-8-1-purpose-of-submit-queue-and-mediaindexing-folders-under-datafold

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!