ddps-lab / cloud-usage

MIT License
1 stars 1 forks source link

AWS Rekognition 과금 관련 분석 결과 #50

Closed mumat0103 closed 5 months ago

mumat0103 commented 5 months ago

AWS Rekognition 에서 과금 중인 내용은 얼굴 이미지에 대한 메타 데이터를 저장하는 비용으로 확인하였습니다.

Amazon Rekognition: $1.6129e-05
        USW2-FaceVectorsStored: $1e-05
        USE1-FaceVectorsStored: $6.129e-06

AWS 콘솔로 접근할 수 없었고, AWS CLI 로 접근해서 해당 정보를 확인할 수 있었습니다.

aws rekognition list-collections --region us-west-2
{
    "CollectionIds": [
        "kmubigdata",
        "test-collection"
    ],
    "FaceModelVersions": [
        "4.0",
        "4.0"
    ]
}

aws rekognition list-collections --region us-east-1                          
{
    "CollectionIds": [
        "deeplens-col",
        "tst-col"
    ],
    "FaceModelVersions": [
        "3.0",
        "3.0"
    ]
}

컬렉션 kmubigdata 과 tst-col 에는 데이터가 없어 바로 삭제하였고, test-collection 과 deeplens-col 을 확인해보니 데이터가 있었습니다.

컬렉션 삭제는 아래 명령어로 실행 할 수 있습니다.

aws rekognition delete-collection --collection-id tst-col --region us-east-1
{
    "StatusCode": 200
}

test-collection 는 19년 1월 29일에 생성되었고, deeplens-col 은 18년 9월 28일에 생성되었습니다. 위 두 컬렉션의 경우에는 원본 이미지가 아닌 메타 데이터이고, 생성된 지 시간이 오래되어 삭제해도 문제 없을 것 같습니다.

kmu-leeky commented 5 months ago

응 성규야 땡큐. 오랫동안 있어왔던 항목이구나. 삭제해버리자.

mumat0103 commented 5 months ago

삭제 완료하였으므로 close