Miscellaneous Flashcards
What is Amazon Athena?
Amazon Athena is a serverless querying service which allows data analysts or other professionals to perform interactive queries on data inside of Amazon S3.
What is ElastiCache?
ElastiCache is a managed in-memory cache which provides a managed implementation of the redis or memcached engines.
When is ElastiCache useful?
It’s useful for read-heavy workloads, scaling reads in a cost effective way, and allowing for externally hosted user session state.
It’s important to note that in order to integrate ElastiCache into an existing system, changes to the code of the application will be required.
What is KMS?
AWS Key Management Service (AWS KMS) enables us to perform encryption/decryption operations through the use of cryptographic keys.
It also allows us create, store, and manage keys.
True/False. The permissions to encrypt, decrypt, and generate keys are all different.
True.
How do KMS keys operate?
KMS keys can only operate cryptographically on data which is a maximum of 4KB in size.
True/False. Data Encryption Keys (DEKs) cannot work with data larger than 4KB in size.
False. Data Encryption Keys (DEKs) CAN work with data larger than 4KB in size.
True/False. KMS keys are isolated to a region and they never leave the region nor KMS itself. You can extract a KMS key.
False. KMS keys are isolated to a region and they never leave the region nor KMS itself. You CAN extract a KMS key.
True/False. You can have special multi-region keys within KMS.
True.
True/False. Each KMS key has a key policy, which is a type of IAM policy.
False. Each KMS key has a key policy, which is a type of resource policy.
What is Redshift?
Redshift is a column based, petabyte scale, data warehousing product within AWS.
What is Redshift designed for?
It’s designed for online analytical processing (OLAP) products both within AWS and on-premises to add data to for long term processing, aggregation, and trending.
What are our query options for Redshift?
We can direct query S3 using Redshift Spectrum. We can direct query other databases using federated query.
True/False. Redshift is a serverless product.
False. Redshift is a server based product, NOT a serverless one.