General
There exist four different import modes, described by the following article.
Database
Each imported data record is imported immediately (and by its own) into the database. The according fast-track tasks are handled by the task handler, therefore the task ends up in the task-queue.
Synchronous
Every data record is written to the database immediately (and by its own). The according fast-track tasks are started by the task handler in the synchronous mode, which means, that the task is not set into the queue but gets executed immediately.
None
Standard mode. All imported data records get written to the database as soon as they are processed by the import (each on its own). There are no fast-track tasks setup, so the changes (for instance ressource or role assignments for the newly imported data) will be applied by the according regular tasks.
Bulk
All imported data records get written to the database as soon as they are processed by the import (each on its own). The according fast-track tasks are collected up to bulks of a cretain amount of data records (by default 100) and are set as bulk-fast-track tasks to the queue by the task-handler.
Import Configuration
The configuration is setup in the moving_appcustomer_900000.taskscheduler_task_params
table, the parameter
iTsense.Moving.Backend.Common.TaskScheduler.TaskMode, iTsense.Moving.Backend.Common
can be set as follows:
<TaskMode xmlns="http://schemas.datacontract.org/2004/07/iTsense.Moving.Backend.Common.TaskScheduler">None</TaskMode>
If the parameter is not set the mode “none” is used.
To use the “synchronous” mode the moving_global.config_setting_value
has to be changed in addition. The following parameters must be set to true (1):
43 | 1 | Enables or disables OnCreate FastTrack Tasks | 42 | ||
44 | 1 | Enables or disables OnDelete FastTrack Tasks | 43 | ||
45 | 1 | Enables or disables OnUpdate FastTrack Tasks | 44 |