This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Can I Delete Local Secondary Indexes? |
|
Answer» CURRENTLY, the Amazon DYNAMODB is incapable of removing the local secondary indexes from the table once they are CREATED, but it is POSSIBLE to DELETE the entire table. Currently, the Amazon DynamoDB is incapable of removing the local secondary indexes from the table once they are created, but it is possible to delete the entire table. |
|
| 2. |
How Many Local Secondary Indexes Can Be Created On One Table? |
|
Answer» Each table can CONSTITUTE up to FIVE LOCAL SECONDARY INDEXES. Each table can constitute up to five local secondary indexes. |
|
| 3. |
Can I Add Local Secondary Indexes To An Existing Table? |
| Answer» | |
| 4. |
How To Create Local Secondary Indexes? |
|
Answer» A Local secondary index needs to be created at the time of creating a table that can’t be added currently. So, later when you create a local secondary index, try specifying the following two parameters. Indexed Sort Key : The attribute on which INDEXING and querying are performed. Projected Attributes : It is the LIST of attributes from the table that can directly be COPIED into the local secondary index. WITHOUT projected attributes, the local secondary index contains only primary KEYS and secondary keys. A Local secondary index needs to be created at the time of creating a table that can’t be added currently. So, later when you create a local secondary index, try specifying the following two parameters. Indexed Sort Key : The attribute on which indexing and querying are performed. Projected Attributes : It is the list of attributes from the table that can directly be copied into the local secondary index. Without projected attributes, the local secondary index contains only primary keys and secondary keys. |
|
| 5. |
What Are Projections? |
Answer»
Each index consists of a MINIMUM of 3 attributes. They are:
Each index consists of a minimum of 3 attributes. They are: |
|
| 6. |
What Are Local Secondary Indexes? |
| Answer» | |
| 7. |
How To Delete A Global Secondary Index In Amazon Dynamodb? |
Answer»
|
|
| 8. |
What Are Api Calls Supported By A Global Secondary Index? |
|
Answer» “QUERY” and “SCAN” are the API calls that are supported by Global SECONDARY Index. “Query” and “Scan” are the API calls that are supported by Global Secondary Index. |
|
| 9. |
How Many Numbers Of Global Secondary Indexes Do You Create Per Table? |
|
Answer» You are allowed to create a MAXIMUM of 5 GLOBAL secondary indexes PER table. You are allowed to create a maximum of 5 global secondary indexes per table. |
|
| 10. |
List Types Of Secondary Indexes Supported By Amazons Dynamodb? |
|
Answer» Two types of indexes are supported by Amazon DynamoDB. They are: Global Secondary index : It is an index with a partition or a partition sort key that is different from those on the table. The global secondary index is CONSIDERED to be global because queries on the index can span all the items in a table, ACROSS all the partitions. LOCAL secondary index : An index that has the same partition key as that of the table but different sort key. It is considered to be “local” because every partition of the index is SCOPED to a table partition that has the same partition key. Two types of indexes are supported by Amazon DynamoDB. They are: Global Secondary index : It is an index with a partition or a partition sort key that is different from those on the table. The global secondary index is considered to be global because queries on the index can span all the items in a table, across all the partitions. Local secondary index : An index that has the same partition key as that of the table but different sort key. It is considered to be “local” because every partition of the index is scoped to a table partition that has the same partition key. |
|
| 11. |
What Are Global Secondary Indexes? |
Answer»
|
|
| 12. |
What Is Dynamodb Auto Scaling? |
|
Answer» DynamoDB is a SUPERINTENDENT FEATURE that scales up and down the read and WRITE capacity of a DynamoDB or a global SECONDARY INDEX automatically. DynamoDB is a superintendent feature that scales up and down the read and write capacity of a DynamoDB or a global secondary index automatically. |
|
| 13. |
Explain Key-value Store? |
|
Answer» It is a database service that provides and supports storing, updating and QUERYING the OBJECTS that are identified USING KEY and values that constitutes the actual CONTENT that is being stored. It is a database service that provides and supports storing, updating and querying the objects that are identified using key and values that constitutes the actual content that is being stored. |
|
| 14. |
What Amazon Dynamodb Batchwriteitem Api Does? |
| Answer» | |
| 15. |
List The Apis Provided By Amazon Dynamodb? |
| Answer» | |
| 16. |
List Some Difference Between Amazon Dynamodb And Amazon Simpledb? |
|
Answer» Amazon DYNAMODB : It is a fast and scalable NoSQL DATABASE Service that is designed for internet scale applications, to maintain predictably high performance and to be highly cost-effective for workloads of any scale, on the top of all it is highly RECOMMENDED. Amazon SimpleDB : It has scaling limitations and is a good fit for smaller workloads that requires query flexibility.It automatically INDEXES all item attributes and supports query flexibility at the cost of performance and scale. Amazon DynamoDB : It is a fast and scalable NoSQL Database Service that is designed for internet scale applications, to maintain predictably high performance and to be highly cost-effective for workloads of any scale, on the top of all it is highly recommended. Amazon SimpleDB : It has scaling limitations and is a good fit for smaller workloads that requires query flexibility.It automatically indexes all item attributes and supports query flexibility at the cost of performance and scale. |
|
| 17. |
Does Amazon Dynamodb Support Conditional Operations? |
|
Answer» For an operation to be COMPLETED on an item, you have to specify a condition.You can define a ConditionExpression that can be constructed from the following: Boolean functions: ATTRIBUTE_EXIST, CONTAINS, and BEGINS_WITH =, <>, <, >, <=, >=, BETWEEN, and IN NOT, AND, and OR. You can also construct a free-form conditional expression that COMBINES multiple conditional clauses which also includes nested clauses. For an operation to be completed on an item, you have to specify a condition.You can define a ConditionExpression that can be constructed from the following: Boolean functions: ATTRIBUTE_EXIST, CONTAINS, and BEGINS_WITH Comparison operators: =, <>, <, >, <=, >=, BETWEEN, and IN NOT, AND, and OR. You can also construct a free-form conditional expression that combines multiple conditional clauses which also includes nested clauses. |
|
| 18. |
What Kind Of Query Functionality Does Dynamodb Support? |
Answer»
|
|
| 19. |
Does Dynamodb Support In-place Atomic Updates? |
|
Answer» Amazon DYNAMODB supports quick in-place ATOMIC UPDATES, were the numeric ATTRIBUTES increment and decrement can be DONE in arrow using just one API call or similarly, you can add or remove sets, lists, or maps. Amazon DynamoDB supports quick in-place atomic updates, were the numeric attributes increment and decrement can be done in arrow using just one API call or similarly, you can add or remove sets, lists, or maps. |
|
| 20. |
List The Data Types Supported By Dynamodb? |
|
Answer» DYNAMODB supports four scalar data types, and they are: DynamoDB supports collection data types such as:
DynamoDB also supports Null values. DynamoDB supports four scalar data types, and they are: DynamoDB supports collection data types such as: DynamoDB also supports Null values. |
|
| 21. |
Explain What Is Dynamodb Mapper Class? |
|
Answer» It is the entry point to DYNAMODB.The DynamoDB Mapper CLASS provides access to a DynamoDB endpoint and ENABLES the user to access to their data in various tables, execute queries and scan against tables, and perform CRUD operations on items. It is the entry point to DynamoDB.The DynamoDB Mapper class provides access to a DynamoDB endpoint and enables the user to access to their data in various tables, execute queries and scan against tables, and perform CRUD operations on items. |
|
| 22. |
Is Dynamodb Free For Use? |
| Answer» | |
| 23. |
What Are The Non-relational Databases? |
|
Answer» The Non-Relational DATABASES are NOSQL databases. These databases are categorized into FOUR groups. They are: The Non-Relational databases are NoSQL databases. These databases are categorized into four groups. They are: |
|
| 24. |
List Some Benefits Of Using Amazon Dynamodb? |
|
Answer» Here is the list of some of the benefits of using Amazon DynamoDB:
Here is the list of some of the benefits of using Amazon DynamoDB: |
|
| 25. |
Explain What Is Dynamodb? |
Answer»
|
|