Retrieve job results
After a job reaches Completed status, download the result files from your Amazon S3 output bucket. The service writes results in Apache Parquet format, preserving all original input data and adding results from the processed action.
Output schema overview
Output files contain the following general field categories, regardless of the job action type:
- Input fields
-
All original input fields are preserved with an
Input_prefix. For example, if your input included anIdfield, it appears asInput_Idin the output. This allows you to correlate output records with their corresponding inputs. - Output_Id
-
A unique identifier generated by the service for each output record.
- Error fields
-
If an error occurs during the processing of a record, the output includes
ErrorTypeandErrorMessagefields with details about the error. Records that process successfully do not include error values. - Action-specific output fields
-
Each job action type adds its own result fields to the output. These fields contain the processed results for each record.
For address validation output schema details, see Output schema.
Retrieve results from Amazon S3
To retrieve job results
-
Open the Amazon S3 console at https://console.aws.amazon.com/s3/
. -
Navigate to your output bucket.
-
Locate the output files created by your job.
-
Select the files and choose Download.
Process the results according to your application needs.