Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

245 total results found

Classic Solutions Architecture Discussion

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

Solution architecture How do you use all these components to make them all work together into one architecture. We will study solution architecture and how to come up with them via case studies. WhatsTheTime.com Let people know what time it is. We don't ne...

S3 Buckets

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

S3 Advertised as infinitely scaling storage. Many AWS services also use S3 as part of its service. You can use S3 for: Backup Storage Disaster recovery Archive Static website Software delivery Data lakes and big data analytics The objects are sto...

Virtualization vs Containers

Docker

Virtualization and virtual machines Virtualization is the process where a software called hypervisor (which sits on top of your native operating system) allows other operating systems to run on top of your native operating system. The hypervisor creates virt...

S3 Bucket Security

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

S3 encryption There are four flavors. You can also set up a bucket policy to only allow files that are encrypted by one of the following server sided encryption. You would provide that in the S3 bucket JSON policy list. For example: You can specify to only a...

CloudFront & Global Accelerator

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

AWS CloudFront Content delivery network, they cache content at different locations world-wide that are closer to the user to improve read performance. CloudFront has DDos protection since it the network is world wide and have integration with shield. Origin...

Caching vs CDN

NodeJs/JavaScript

Cache(ElastiCache) Again caching is storing data that are frequently accessed into RAM so that they can be retrieved more quickly than going through a disk / a database query which takes significantly more time on CPU scale. CDN Content delivery network is ...

Why does my container immediately exits?

Docker

Containers are not like virtual machines Each docker contain have a main process that is run via CMD / ENTRYPOINT command in the Dockerfile. Once those processes finishes and exit then the container will stop and exit as well! It will not run indefinitely. I...

exec form vs shell form

Docker

Command forms RUN, ENTRYPOINT, and CMD are all directives to run a command in your Dockerfile. All three takes two forms of command, shell form and exec form. 1. Shell formThe commands are written without the [] brackets and are run by the container's shell ...

docker stop vs docker kill

Docker

Docker stop This provides a graceful way of exiting the container. it will sent a SIGTERM to the main process (PID 1), then after a grace period of 10 seconds if the main process still doesn't exit it will sent a SIGKILL to forcefully kill the main process. ...

RUN, CMD, ENTRYPOINT Directives

Docker

RUN The RUN directive is executed in a new layer, what does it mean? It is used to install packages and applications on top of an existing image layer and create a new layer on top of it. Docker images are used to build new ones and the RUN directive allows y...

More Storage Options

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

SnowFamily These are secure, portable devices that allows you to college and process data at edge location, AND migrate data in and out of AWS. Two use cases. It is used to perform offline data migration since if you are going to transfer data using the netw...

SQS, SNS, Kinesis, Active MQ

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

Decoupling mechanism When we deploy multiple applications they will inevitably need to communicate. There is two ways of doing the application. Synchronous communication: Direct connection for direct communication between application Asynchronous / event ...

ECS, Fargate, ECR, & EKS

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

Amazon ECS Elastic container service. It is Amazon's own container platform. Let you launch container instance and run them. If you want to launch docker container on AWS you will be launching ECS Tasks. Task definition tells what docker image to use to run ...

Serverless, Lambdas, DynamoDB, Cognito, API Gateway

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

Lambda function Why is serverless good? Well if you are using EC2 instances then you have to provision them if you need more compute power. You will be paying for those servers that are continuously running. It has limited RAM and CPU. Lambda function you do...

Serverless Architecture Discussion

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

MyTodoList We want to make a mobile todo with REST API with HTTPS using serverless architecture. User should be able to interact with their own folder in S3. Users can write and read to-dos, but mostly read them. Database should scale and have high read throu...

Picking the Right Databases

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

How to pick right database Depend on the question, read-heavy, write-heavy, or balanced workload? throughput needs? How much data to store and for how long? Will it grow? Data durability? Latency requirements? Strong schema or flexibility? It depends on a ...

Data and Analytics

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

Athena Query service that let you analyze data stored in S3. It uses SQL language to do the query. You will be putting data into S3 then you will query it with Athena. You pay per TB of data scanned. No need to pay for any server since it is serverless. It...

Machine Learning

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

Rekognition A machine learning service to find object, people, text, scenes in images and videos. Facial analysis and facial search to do user verification works as well. You can use it to do labeling, content moderation, text detection, and many things. Co...

AWS Monitoring CloudWatch, CloudTrail, Config

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

CloudWatch CloudWatch Metrics CloudWatch provides metrics (variable that you want to monitor) for every services in AWS. A metric belong to namespaces which is per services. 10 Dimension per metrics, associated instance id, environments, ...etc. You can ev...

KMS, SSM Parameter Store, Shield, WAF

AWS Solution Architect Notes Ultimate AWS Certified Solutions Archit...

Encryption 101 Encryption in flight: Achieved via SSL, your connection to the web server is encrypted, so no one can man in the middle you and sniff the packet that you're sending to find sensitive data SSL certificates is used to established the secure conn...