Serverless Backend with AWS Lambda & API Gateway · درس

الاستعلام باستخدام الفهارس الثانوية: GSIs وLSIs

تعلّم كيف تتيح الفهارس الثانوية العامة والمحلية الاستعلام من DynamoDB باستخدام سمات غير المفتاح الأساسي، وكيفية الاختيار بينهما.

الدرس 4 من 413 خطوة

الاستعلام باستخدام الفهارس الثانوية: GSIs وLSIs درس مجاني في Serverless Backend with AWS Lambda & API Gateway على CoddyKit. هذا هو الدرس 4 من أصل 4. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في Serverless Backend with AWS Lambda & API Gateway، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة Serverless Backend with AWS Lambda & API Gateway 4 دروس في المجموع.

بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.

The Primary Key Limitation

DynamoDB queries efficiently only by the primary key (partition key, optionally plus sort key). To query by other attributes you need a secondary index.

  • Scanning the whole table is slow and costly
  • Indexes give you efficient alternate access paths

What Is a Secondary Index?

A secondary index is an alternate view of your table data, organized by a different key. DynamoDB keeps it in sync automatically as you write to the base table.

Global Secondary Index (GSI)

A GSI can use any attributes as its partition and sort key, different from the table key. It has its own throughput and can be created anytime.

  • Query by a completely different attribute
  • Spans all partitions of the table
  • Eventually consistent reads only

Local Secondary Index (LSI)

An LSI shares the table partition key but uses a different sort key. It must be created at table creation time and supports strongly consistent reads.

GSI vs LSI at a Glance

Choosing between them:

  • GSI: different partition key, created anytime, eventually consistent
  • LSI: same partition key, created with the table, strongly consistent

Defining a GSI

You specify the index name and its key schema. Reads and writes against the index are billed separately from the base table.

aws dynamodb update-table --table-name Orders \
  --attribute-definitions AttributeName=status,AttributeType=S \
  --global-secondary-index-updates "[{...}]"

Querying an Index

To query a GSI you pass its name and the index key condition. The query returns items matching that alternate key.

aws dynamodb query --table-name Orders \
  --index-name status-index \
  --key-condition-expression "status = :s" \
  --expression-attribute-values '{":s":{"S":"PAID"}}'

Projection: Which Attributes Are Copied

An index projection controls which attributes are copied into it: keys only, a selected set, or all. Projecting fewer attributes saves storage but may force a base-table fetch.

  • KEYS_ONLY: smallest, just keys
  • INCLUDE: keys plus chosen attributes
  • ALL: full copy, biggest

Index Throughput and Cost

GSIs consume their own read and write capacity. Every base-table write that affects an indexed attribute also writes to the GSI, so over-indexing increases cost.

Sparse Indexes

If an item lacks the index key attribute, it is not written to the index. This creates a sparse index, an efficient way to query only items that have a certain attribute set.

Designing Access Patterns First

In DynamoDB you design indexes around your access patterns, not the other way around. List the queries your app needs, then create the minimal set of indexes that serve them.

Quick Check

Test your index knowledge.

Recap

You learned how secondary indexes enable querying DynamoDB by non-primary-key attributes. You compared GSIs (flexible keys, created anytime, eventually consistent) with LSIs (shared partition key, created with the table, strongly consistent), and covered projections, throughput, sparse indexes, and access-pattern-first design.

البدء مجانًا

تعلم Serverless Backend with AWS Lambda & API Gateway مع معلم ذكاء اصطناعي — مجانًا

اكتب وقم بتشغيل أكوادك الفعلية في المتصفح، واحصل على مساعدة فورية من معلم ذكاء اصطناعي متاح 24/7، واستمر من حيث توقفت على الويب أو في التطبيق.

الدورات
12
الدروس
48

الأسئلة الشائعة

هل درس «الاستعلام باستخدام الفهارس الثانوية: GSIs وLSIs» مجاني؟

نعم — نص درس «الاستعلام باستخدام الفهارس الثانوية: GSIs وLSIs» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة Serverless Backend with AWS Lambda & API Gateway، انتقل إلى CoddyKit PRO. تتضمن دورة Serverless Backend with AWS Lambda & API Gateway 4 دروس في المجموع.

ماذا ستتعلم في «الاستعلام باستخدام الفهارس الثانوية: GSIs وLSIs»؟

تعلّم كيف تتيح الفهارس الثانوية العامة والمحلية الاستعلام من DynamoDB باستخدام سمات غير المفتاح الأساسي، وكيفية الاختيار بينهما. تتمرن على Serverless Backend with AWS Lambda & API Gateway مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.

هل أحتاج إلى خبرة سابقة لأبدأ Serverless Backend with AWS Lambda & API Gateway؟

لا تُشترط خبرة سابقة. Serverless Backend with AWS Lambda & API Gateway على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 4 من أصل 4.

كم من الوقت يستغرق درس «الاستعلام باستخدام الفهارس الثانوية: GSIs وLSIs»؟

معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.

هل يمكنني كتابة وتشغيل أكواد في درس Serverless Backend with AWS Lambda & API Gateway هذا؟

نعم. كل درس في Serverless Backend with AWS Lambda & API Gateway يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.

جميع الدروس في هذه الدورة

  1. مقدمة إلى DynamoDB
  2. تصميم جداول DynamoDB
  3. تكامل Lambda وDynamoDB
  4. الاستعلام باستخدام الفهارس الثانوية: GSIs وLSIs
← العودة إلى Serverless Backend with AWS Lambda & API Gateway