

 Amazon Redshift는 패치 198부터 새 Python UDF 생성을 더 이상 지원하지 않습니다. 기존 Python UDF는 2026년 6월 30일까지 계속 작동합니다. 자세한 내용은 [블로그 게시물](https://aws.amazon.com/blogs/big-data/amazon-redshift-python-user-defined-functions-will-reach-end-of-support-after-june-30-2026/)을 참조하세요.

# 버킷에 올바른 파일이 존재하는지 확인
<a name="verifying-that-correct-files-are-present"></a>

파일을 Amazon S3 버킷에 업로드한 후에는 버킷의 콘텐츠를 나열하여 올바른 파일이 모두 존재하고 원치 않는 파일이 없는지 확인하는 것이 좋습니다. 예를 들어 버킷 `amzn-s3-demo-bucket`에 `venue.txt.back` 파일이 보관된 경우, 해당 파일은 아마도 다음 명령에 의해 의도치 않게 로드될 것입니다.

```
COPY venue FROM 's3://amzn-s3-demo-bucket/venue' … ;
```

구체적으로 어떤 파일이 로드되는지 제어하려면 매니페스트 파일을 사용하여 데이터 파일을 명시적으로 나열합니다. 매니페스트 파일 사용에 대한 자세한 내용은 COPY 명령의 [copy_from_s3_manifest_file](copy-parameters-data-source-s3.md#copy-manifest-file) 옵션과 COPY 예의 [매니페스트를 사용하여 데이터 파일 지정](r_COPY_command_examples.md#copy-command-examples-manifest)를 참조하세요.

버킷의 콘텐츠 나열에 대한 자세한 내용은 *Amazon S3 Developer Guide*의 [Listing Object Keys](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ListingKeysUsingAPIs.html) 섹션을 참조하세요.