From 395d0766f0a5885f2e336493d44fe952a63eca29 Mon Sep 17 00:00:00 2001 From: kyu08 <49891479+kyu08@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:47:36 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=BB=E3=82=AB=E3=83=B3=E3=83=80=E3=83=AA?= =?UTF-8?q?=20=E3=82=A4=E3=83=B3=E3=83=87=E3=83=83=E3=82=AF=E3=82=B9=20|?= =?UTF-8?q?=20Spanner=20|=20Google=20Cloud?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/posts/learn-about-spanner/index.md | 43 +++++++++++++++++++--- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/content/posts/learn-about-spanner/index.md b/content/posts/learn-about-spanner/index.md index 8f4a1e3..075e444 100644 --- a/content/posts/learn-about-spanner/index.md +++ b/content/posts/learn-about-spanner/index.md @@ -128,11 +128,44 @@ CREATE NULL_FILTERED INDEX UsersByLastAccess ON Users(LastAccess); 1. インデックスに`ShardId`を追加する 1. インデックスをインターリーブする - - - - - +## [セカンダリ インデックス  |  Spanner  |  Google Cloud](https://cloud.google.com/spanner/docs/secondary-indexes?hl=ja#add-index) +- Spannerではセカンダリインデックスに次のデータが格納される。 + - ベーステーブルのすべてのキー列 + - インデックスに含まれるすべての列 + - `STORING`句で指定されたすべての列 + +## NULL値の並び替え順 +SpannerではNULLを最小値として扱うため昇順の場合はNULLが先頭に、降順の場合は末尾に並ぶ。 + +## 末尾のレコードの取得 +次のようなクエリを実行する場合は結果をすばやく取得することができる。これはSpannerがテーブルの行を`PRIMARY_KEY`によって辞書順に並べかえるため。 + +```sql +-- テーブル定義 +CREATE TABLE Songs ( + SongId INT64 NOT NULL, + ... +) PRIMARY KEY (SongId); + +-- クエリ +SELECT SongId FROM Songs LIMIT 1; +``` + +しかしSpannerではテーブル全体をスキャンしないと列の最大値を取得することができないため次のようなクエリはすばやく結果を返さない。 + +```sql +SELECT SongId FROM Songs ORDER BY SongId DESC LIMIT 1; +``` + +このようなケースでは次のようにPK降順のインデックスを明示的に作成することで読み取りパフォーマンスを向上させることができる。 + +```sql +CREATE INDEX SongIdDesc On Songs(SongId DESC); +``` + +## [What DBAs need to know about Cloud Spanner: Keys and indexes | Google Cloud Blog](https://cloud.google.com/blog/products/gcp/what-dbas-need-to-know-about-cloud-spanner-part-1-keys-and-indexes/?hl=en) + + -->