

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# PostgreSQL용 멀티 테넌트 SaaS 파티셔닝 모델
<a name="partitioning-models"></a>

다중 테넌시를 수행하는 가장 좋은 방법은 SaaS 애플리케이션의 요구 사항에 따라 다릅니다. 다음 섹션에서는 PostgreSQL에서 다중 테넌시를 성공적으로 구현하기 위한 파티셔닝 모델을 보여줍니다.

**참고**  
이 섹션에서 설명하는 모델은 Amazon RDS for PostgreSQL 및 Aurora PostgreSQL 호환 모두에 적용됩니다. 이 섹션의 *PostgreSQL*에 대한 참조는 두 서비스 모두에 적용됩니다.

SaaS 파티셔닝을 위한 PostgreSQL에는 사일로, 브리지 및 풀이라는 세 가지 상위 수준 모델을 사용할 수 있습니다. 다음 이미지는 사일로 모델과 풀 모델 간의 장단점을 요약한 것입니다. 브리지 모델은 사일로 및 풀 모델의 하이브리드입니다.


****  

| **파티셔닝 모델** | **장점** | **단점** | 
| --- | --- | --- | 
| 사일로 | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/saas-multitenant-managed-postgresql/partitioning-models.html) | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/saas-multitenant-managed-postgresql/partitioning-models.html) | 
| 풀 | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/saas-multitenant-managed-postgresql/partitioning-models.html) | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/saas-multitenant-managed-postgresql/partitioning-models.html) | 
| 브리지 | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/saas-multitenant-managed-postgresql/partitioning-models.html) | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/saas-multitenant-managed-postgresql/partitioning-models.html) | 

다음 섹션에서는 각 모델에 대해 자세히 설명합니다.

**Topics**
+ [PostgreSQL 사일로 모델](silo.md)
+ [PostgreSQL 풀 모델](pool.md)
+ [PostgreSQL 브리지 모델](bridge.md)
+ [의사결정 매트릭스](matrix.md)