Checking Batch Processing Results

In this section:

For active monitoring of all iWay Master Data Server (MDS) batch processes, click Execution Status under MD Process Monitoring. The Execution Status screen displays the list of running or finished operations (loads or exports), as shown in the following image.

You can click the ID or Name of the operation to see its details, as shown in the following image. It shows the phases of the batch load and tasks for each phase.

iWay MDS performs batch loads in the following phases:


Top of page

x
Events

The load operation produces Data Changes (also called events or event data changes). An event is produced when a change in an attribute in one record is detected. iWay MDS provides event Publishers. The Event output structure can be configured using both custom and predefined Transformers. An Event can consist of iWay MDS engine metadata and entity attributes with new and old values (optional). In the sample solution, events appear in the iWay MDS console because Standard Output Publisher is used. A simple XML Transformer sample Event output is displayed in the code below. This will appear after running the batch load operations.

party(layer: instance):
<event>
		<metadata>
				<id>2139</id>
				<event_type>INSERT</event_type>
				<entity>party</entity>
				<activation_date>2014-08-05 17:04:12</activation_date>
				<activation_tid>2100</activation_tid>
				<creation_date>2014-08-05 17:04:12</creation_date>
				<creation_tid>2100</creation_tid>
				<last_update_date>2014-08-05 17:04:12</last_update_date>
				<last_update_tid>2100</last_update_tid>
				<last_source_update_date>2014-08-05 				17:04:12</last_source_update_date>
				<last_source_update_tid>2100</last_source_update_tid>
				<layer>instance</layer>
				<origin>life#party#party</origin>
				<source_system>life</source_system>
		</metadata>
		<attributes>
				<source_id>312</source_id>
				<master_id>50</master_id>
				<src_company_name>SILVERGREEN</src_company_name>
				<src_business_number>653216317 RD 0010</src_business_number>
				<eng_active>true</eng_active>
		</attributes>
		<oldAttributes>
				<source_id/>
				<master_id/>
				<src_company_name/>
				<src_business_number/>
				<eng_active>false</eng_active>
		</oldAttributes>
</event>

iWay Software