Skip to main content

Basic Technologies in Cloud Computing

·238 words·2 mins
Posts 101 cloud aws azure gcp
Table of Contents
Explore the basic technologies in public cloud platform: Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform (GCP).

Compute
#

  • At on-prem, or traditional data center, Compute is referring to the physical server.
  • At cloud, Compute is referring to virtual machine or container or serverless.
  • typically, virtual machine isn’t the go-to technology to use nowadays.
  • serverless solution is easier to be used (called endpoint).
Compute TechnologiesAWSAzureGCP
ServerlessLambdaAzure FunctionsGoogle Cloud Functions
Virtual MachineEC2Virtual MachineCompute Engine
Hosted ContainerFargateContainer InstancesCloud Run
Container OrchestrationEKSAKSKubernetes Engine

Storage
#

  • For storing data as object.
  • Can apply labels and filters to the object.
  • typically used for long-term storage, like PDF and word files (unstructure data).
Object StorageAWSAzureGCP
StorageS3Blob StorageCloud Storage

Database
#

  • For structure data which allows for querying and complex transaction.
  • Optimized for frequent access.
  • More specialized DB such as knowledge graphs, vector DB.
DatabaseAWSAzureGCP
Relational DBMySQL/PostgreSQLMySQL/PostgreSQLMySQL/PostgreSQL
NoSQLDynamoDBCosmosDBFirestore/datastore
Data warehouseRedShiftSynapse AnalyticsBigQuery

AL/ML
#

  • Solutions for vision-focused, generative AI, etc.
  • Still new.
AI/MLAWSAzureGCP
Pre-built AIAmazon Rekognition, Amazon Translate, Amazon ComprehendAzure Cognitive, Azure Machine LearningGoogle Cloud Vision AI, Google Cloud Translation, Google Cloud Natural Language
MLSageMakerAzure Machine LearningVertext AI
AutoML ToolsSageMaker Autopilot, Amazon KendraAzure Automated MLAutoML Vision, AutoML Natural Language

Related

Cloud Native Tools
·517 words·3 mins
Posts 101 cloud tools
What are CSPM, CWPP, and CIEM?
Oracle Cloud Free Tier
·257 words·2 mins
Posts cloud free oracle
Build, test and deploy application on a Linux server in Oracle Cloud - for FREE.
Python with Context Manager
·170 words·1 min
Posts YT Essential 101 python
Using Context Manager as an essential coding practice in Python.