기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
어휘 수집 작업 상태 확인
aws bedrock-data-automation get-data-automation-library-ingestion-job \ --library-arn "arn:aws:bedrock:us-east-1:123456789012:data-automation-library/healthcare-vocabulary" \ --job-arn "arn:aws:bedrock:us-east-1:123456789012:data-automation-library-ingestion-job/job-12345"
작업 상태:
IN_PROGRESS: 작업이 현재 처리 중입니다.
COMPLETED: 모든 개체가 성공적으로 처리됨
COMPLETED_WITH_ERRORS: 일부 개체 실패(자세한 내용은 출력 확인)
FAILED: 작업이 완전히 실패했습니다.
작업 출력 이해
작업 완료 후 S3 출력 위치에서 자세한 결과를 확인합니다.
{ "metadata": { "jobId": "job-12345", "manifestS3Bucket": "my-bucket", "manifestS3Key": "manifests/vocabulary-manifest.json" }, "vocabulary": { "successful": [ { "entityId": "medical-en", "itemIndex": 0, "description": "Medical terms in English language", "phrases": [ { "text": "acetaminophen" }, { "text": "ibuprofen" }, { "text": "naproxen" } ], "language": "EN" } ], "failed": [ { "entityId": "medical-es", "itemIndex": 1, "errorType": "ValidationError", "errorMessage": "Entity validation failed: Missing required creator property 'language'" } ] } }