Database Sharding - CI/CD用語集の定義
database shardingはデータをshard keyによって複数のデータベースに分割し、負荷を水平方向に分散させます。
database shardingは、データセットをshard keyによって複数のデータベースに分割し、各shardがデータの一部を保持して負荷を水平方向に分散させます。
shardingされたシステムに対するマイグレーションはすべてのshardで実行する必要があります。pipelineは同じマイグレーションを各shardにfan-outし、すべて成功したことを確認してから先に進みます。
関連ガイド
Database Index - CI/CD Glossary DefinitionDatabase Index: A database index is a data structure that speeds up lookups on one or more columns, at the co…
Read Replica - CI/CD Glossary DefinitionRead Replica: A read replica is a copy of a database that receives changes from the primary and serves read-o…