Difference between revisions of "Finished"

From truxwiki.com
Jump to navigation Jump to search
Line 29: Line 29:
 
   <backupfolder>C:\Temp\s7</backupfolder>
 
   <backupfolder>C:\Temp\s7</backupfolder>
 
</source>
 
</source>
 +
 +
{| class="wikitable"
 +
|-
 +
! Name
 +
! Data Type
 +
! Description
 +
|-
 +
| autobackup
 +
| style="text-align:center;" | boolean
 +
| When true, it generates a media export
 +
|-
 +
| backupfolder
 +
| style="text-align:center;" | string
 +
| The name of the folder to hold the backup
 +
|}
 +
 +
The output filename will have the format of a timestamp followed by the media id.
 +
For example:
 +
<pre>
 +
2021-01-24-06-05-59-18229588-049F-9E2B-868B-F8841392A4AF.tpmf
 +
</pre>
  
 
=Automatic Publishing=
 
=Automatic Publishing=

Revision as of 07:09, 24 January 2021

Details
Executable Finished.exe
Stage 240
Percent Complete 94% - 100%
Message Queue finished

The Finished ETL is responsible for completing a Truxton load. It performs the following tasks:

  • Updating [File] table records to populate [NumberOfChildren] and [FullPathID] columns
  • Record final load data in the [Statistics] table
  • Generate the Load Log
  • Update the [MD5Hash] table with a unique list of hashes

Automatic Backup

You can have a backup made of the freshly loaded media by adding the following to your configuration.

  <autobackup>Yes</autobackup>
  <backupfolder>C:\Temp\s7</backupfolder>
Name Data Type Description
autobackup boolean When true, it generates a media export
backupfolder string The name of the folder to hold the backup

The output filename will have the format of a timestamp followed by the media id. For example:

2021-01-24-06-05-59-18229588-049F-9E2B-868B-F8841392A4AF.tpmf

Automatic Publishing

You can have the freshly loaded media pushed to another instance of Truxton by adding the following to your configuration.

  <autopublish>Yes</autopublish>
  <apname>EnterpriseTruxton</apname>
  <apserver>localhost</apserver>
  <apport>5432</apport>
  <apuser>postgres</apuser>
  <appassword>Truxton4n6</appassword>