CopyStormTaskLogFile Table
The CopyStormTaskLogFile table stores segmented pieces (“chunks”) of large task log files generated by job runs of CopyStorm and CopyStorm/Medic. Each chunk represents a portion of the full log associated with a specific CopyStormTaskLog record. This allows for scalable storage and retrieval of log data.
The following table describes each field in the CopyStormTaskLogFile table:
| Column Name | Data Type | Required | Description |
|---|---|---|---|
| id | integer | Yes | Unique identifier assigned to the task log chunk. |
| taskLogId | integer | Yes | The unique id of the CopyStormTaskLog which has chunked its log file. |
| sequenceNum | integer | Yes | The chunk’s position for a given log entry in the database. |
| logFile | varchar | No | The contents of the log file chunk. |
| createdDate | datetime | Yes | The date and time when the record was created. |
| lastModifiedDate | datetime | Yes | The date and time when the record was last modified. |