Azure Storage 개발
Shahzad Mian
Content developer, DataCamp









"PartitionKey": "CustomerA",
"RowKey": "1001",
"Name": "Ava",
"Points": 120

업데이트는 엔터티 속성을 새 값으로 교체합니다.
삭제는 엔터티를 완전히 제거합니다.
예시 명령:
table_client.update_entity(entity)
table_client.delete_entity("CustomerA","1001")
Table Storage는 단순하고 확장 가능하며 비용 효율적인 구조적 데이터에 적합합니다.
모든 레코드는 PartitionKey와 RowKey가 필요합니다.
더 풍부한 쿼리, 글로벌 복제, 다중 데이터 모델이 필요하면 Cosmos DB를 사용하세요.
하이브리드 데이터 아키텍처에서 두 서비스를 함께 사용할 수 있습니다.


Azure Storage 개발