How to increase the threads used for an Enterprise Vault (EV) File System Archiving (FSA) task

book

Article ID: 100064191

calendar_today

Updated On:

Description

Description

In order to increase the number of threads an FSA task uses to process a file server, perform the following steps. 

  • Open SQL Management Studio and connect to the SQL server that contains the EntepriseVaultDirectory database. 
  • To find the FSA tasks in the database, run the following in a New Query window:

USE EnterpriseVaultDirectory
SELECT * FROM Task 
WHERE TaskType = 3

  • Determine the correct task Name to update and run the following to increase the threads: 

USE EnterpriseVaultDirectory
UPDATE Task
SET NumberOfThreads = 10 
WHERE TaskType = 3 
AND Name = 'File System Archiving Task'
-- Replace with the correct name for the task. 

  • Restart the task on the Enterprise Vault server for the change to take effect. 

 

Issue/Introduction

How to increase the threads used for an Enterprise Vault (EV) File System Archiving (FSA) task