What is the reason behind following error: Fatal Error: File data set, file "{0}".; output of "ImportSP": the record is too big to fit in a block;

1 comment:

  1. This error message is related to import trying to send the record to the next stage in the job. No record can be larger than a single transport buffer block. The default size for a buffer block is 32,768, the max limit is 1,048,576.

    so, set the env var APT_DEFAULT_TRANSPORT_BLOCK_SIZE larger than your record size in jobs with records > 32k.

    ReplyDelete