Skip to main content
Mitratech Success Center

Client Support Center

Need help? Click a product group below to select your application and get access to knowledge articles, webinars, training content, and release notes or to contact our support team.

Authorized users - log in to create a ticket, view tickets status and check your success plan details.

 

Advanced Settings for Storing Files

In this article you will learn all about advanced settings for storing files.

By default, when documents are stored in Indexing Studio, they are stored document by document. If a document cannot be stored, only that document will fail. However, it is possible to configure Indexing Studio so that documents are stored in a batch and, if one document in the batch cannot be stored, none of the documents are stored.

Store Document by Document

To store documents on a document-by-document basis in Indexing Studio, use the default setting for UseBatchDocumentStorage in the HitecLabs.DataStore.IndexingStudio.exe.config file (False):

<HitecLabs.DataStore.Client.Applications.IndexingStudio.Properties.Settings>
<!-- Set the UseBatchDocumentStorage-->
<setting name="UseBatchDocumentStorage" serializeAs="String">
<value>False</value>
</setting>
</HitecLabs.DataStore.Client.Applications.IndexingStudio.Properties.Settings>

When set to False, if one or more documents cannot be stored, the remaining documents are stored, leaving the failed documents behind. Correct the problems in the remaining files and then store them again.

image

Store Documents in a Batch

To store documents in a batch in Indexing Studio, change the setting for UseBatchDocument- Storage in the HitecLabs.DataStore.IndexingStudio.exe.config file to True:

<HitecLabs.DataStore.Client.Applications.IndexingStudio.Properties.Settings>
<!-- Set the UseBatchDocumentStorage-->
<setting name="UseBatchDocumentStorage" serializeAs="String">
<value>True</value>
</setting>
</HitecLabs.DataStore.Client.Applications.IndexingStudio.Properties.Settings>

When one or more files cannot be stored, none of the files are stored and the following window is displayed. The Current Status states that storage has failed. Correct the problems and then store the files again.

image

  • Was this article helpful?