Today I Learned

TIL, 2018-05-02, The Grind

Musings, Ruby

hash = {
  :key1 => 1,
  :key2 => (2 if condition),
  :key3 => 3,
}.reject { |k, v| v.nil? }

AWS Fargate

  • No need to think about the containers so you can just focus on building and operating your application.
  • No need to manage a cluster of EC2 instances.
  • Integrates with ECS.
  • Build container image → choose orchestrator → define application → launch containers → run containers.
  • Changing the calculus of containers in the cloud:
    • You should be able to write your code and have it run, without having to worry about configuring complex management tools, open source or not. With Fargate, you don’t need to stand up a control plane, choose the right instance type, or configure all the other components of your application stack like networking, scaling, service discovery, load balancing, security groups, permissions, or secrets management. You simply build your container image, define how and where you want it to run, and pay for the resources you need.
    • Fargate has native integrations to Amazon VPC, Auto Scaling, Elastic Load Balancing, IAM roles, and Secrets Management. We’ve taken the time to make Fargate production ready with a 99.99% uptime SLA and compliance with PCI, SOC, ISO, and HIPAA.
    • I think the next area of innovation we will see after moving away from thinking about underlying infrastructure is application and service management.
    • How do you interconnect the different containers that run independent services, ensure visibility, manage traffic patterns, and security for multiple services at scale? How do independent services mutually discover one another? How do you define access to common data stores? How do you define and group services into applications?

Weekend Reading: Amazon Aurora: Design Considerations for High Throughput Cloud-Native Relational Databases.

Reference

  • What customers wanted when RDS came was to move to non-proprietary databases.
  • They would love to migrate to an open-source style database like MySQL or PostgreSQL, if such a database could meet the enterprise-grade reliability and performance these high-scale applications required.
  • RDS vs Aurora:
    • Lambda functions.
    • Load data from S3 or load XML from S3.
    • Aurora is 5.6 compatible.

This project is maintained by daryllxd