AWS section 8

  1. How long can sqs messages be kept in the queue? What is the default retention period?
    1minute to 14 days. Default being 4days
  2. What is meant by visibility timeout? What is its default value
    The time that the message is invisible in sqs after a reader picks up that message.

    If the message is processsed, then the message gets deleted. 

    if not then the message becomes visible in the queue again. Another reader processes it. This could result in the same messgae being delivered twice

    Default = 30 secs. Should be increased it the task takes longer obvsly
  3. What are the different types of queues in sqs and what are the differences
    Standard queues: Best effort ordering. Messages delivered at least once

    FIFO queues : order striclty preserved. Mssage delivered once with no ducplicates so good for banking apps.
  4. What is SQS? What is its guarantee? Why do we use it?
    • (The oldest service of AWS)
    • - Gives you access to this message queue that can be used to store messages while waiting for a computer to process them.

    - Its this neat lil distributed queue system that allows web services to reliably queue messages that one component in the app makes, ready to be eaten by another.

    -basically a queue for messages that need processing.

    Its guarantees: Messages will be delivered once

    Why do we use it? Allows you to decouple the components of an app so they are independent.
  5. Difference between SES and SNS
    SES is email only. Can be used for icoming and outgoing email. Not subscription based

    SNS is SMS, HTTP, SQS, email and push notifs only. Its a subscription model
  6. Is SQS a push or pull based system?
    Its a pull based system.
  7. What is the problem with launching RDS from inside the EBS? WHat is the benefit and when would you ever really want to launch an ebs instance from within the ebs?
    If you terminate your EBS instance, the database will also be terminated.


    • Quick and easy to add to database.
    • Good for test and dev environments
  8. What even is elastic beanstalk?
    • - Service for deploying and scaling web apps developed in many popular languages like java python, ruby, docker.
    • - Its gr8 cos you can focus on writing code and not worry about the infrastructure stuff. You can just throw it code in a zip file and it will configure the env for you.
    • - It will manage your ec2 instances for you or you can take full administrative control if ya want
  9. How do you launch RDS from outside elastic beanstalk?
    Decouple RDS from your EBS environment and just launch the RDS from the RDS section of the console.

    • 1. An additional security group must be added to your environments autoscaling security group
    • 2. Provide connection string configuration information to your application servers. (endpoint, password)
  10. What are the 4 different deployment approaches with elastic beanstalk and how do they differ?
    • all at once -> gives downtime
    • Rolling, reduced capacity
    • Rolling with additional batch -> no downtime
    • Immutable -> maintains full capacity
  11. How do you configure elastic beanstalk?
    • need to use elastic beanstalk config files
    • pls finish
  12. WHat is streaming data. give examples
    • Data generated continuously by thousands of datasources
    • Purchases from online sotres
    • stock prices
    • game data etc
  13. What is kinesis and what are the main three services
    • Platform to send streaming data. Kinesis helps to load and analyze streaming data and prvide ability to build custom apps for business needs
    • Kinesis streams
    • Kineses firehose
    • kinesis analytics
  14. What is kinesis streams and whats inside one
    Stores data from ec2, phones, computers.

    Data is stored in shards. Can be retained for 7 days. normally 24hrs.
  15. what is kinesis firehose
    no shards, no streams. Completely automated. Can use lamda if want. Data is sent into s3. Theres no data retention default since it ends up in s3 anyhow.
  16. What is kinesis anlytics
    Allows you to run sql queries. lets you analyse data in kinesis. Kinesis streams and kinesis firehose.
Author
keesukim
ID
347820
Card Set
AWS section 8
Description
Section 8
Updated