Global Secondary Index feature recommendations #32091
sunkai-cai
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
全局二级索引(Global Secondary Index,GSI)是分布式数据库的一个重要特性,通过全局二级索引,能够支持 减少全路由查询、实现全局唯一约束、按需增加拆分维度(垂直分片)等特性。
全局二级索引的本质是空间换时间,通过索引表,加速查询的速度。为此,我们需要实现以下几个步骤:
Global Secondary Index (GSI) is an important feature of distributed databases, through which it can support a variety of features, e.g the reduction of full route , the implementation of global unique constraints, and the increase of split dimensions (vertical sharding) ,etc.
The essence of global secondary indexes is to exchange space for time, speed up queries by the index table. To do this, we need to implement the following steps:
Beta Was this translation helpful? Give feedback.
All reactions