際際滷

際際滷Share a Scribd company logo
BIG DATA WITH AWS
INTRO TO
Szilveszter Molnar, Senior Pre-Sales Engineer
@moszinet
GENERIC AWS
GENERIC AWS
Regions
Availability Zones
REGIONS AND AVAILABILITY ZONES
GENERIC AWS
Regions
Availability Zones
Edge Locations
GENERIC AWS
Amazon EC2
Elastic Compute Cloud
Amazon S3
Simple Storage Service
(Volume Types) (Pricing Model)
IAM
Identity And Access Management
Big Data on AWS
GLACIER
GLACIER
CONCEPTS
 Keep all your data at a much lower cost
 Move automatically from S3 to Glacier
 Compliance requirements to keep your data
 Vault Lock (based on IAM policies)
Big Data on AWS
KINESIS
AWS KINESIS
WHAT IS KINESIS?
 Platform for streaming data on AWS
 "sometimes TBs per hour"
AWS KINESIS
KINESIS COMPONENTS
Firehose AnalyticsStreams
KINESIS STREAMS
AWS KINESIS STREAMS
AWS KINESIS STREAMS
CONCEPTS
 Streams - ordered sequence of data records
 Data record - Sequence Number, Partition Key, Data Blob
 1MB max
 Retention period - 24h - 7d
 Producers, Consumers
 Shards
AWS KINESIS STREAMS
KINESIS STREAMS - SHARDS
 Fixed unit of capacity
 Read
 5 transaction / sec
 2MB / sec
 Write
 1000 records / sec
 1MB / sec
KINESIS
FIREHOSE
AWS KINESIS FIREHOSE
AWS KINESIS FIREHOSE
CONCEPTS
 Firehose delivery stream
 record - 1MB max
 data producer
 buffer size, buffer interval
AWS KINESIS FIREHOSE
DATA DELIVERY
 KINESIS STREAM
 S3
 Redshift
 Elasticsearch
KINESIS
ANALYTICS
AWS KINESIS ANALYTICS
AWS KINESIS ANALYTICS
AWS KINESIS ANALYTICS
TERMINOLOGY
 Input
 Application Code
 In-App-Streams
 Pumps
 Streaming SQL
 Output
AWS KINESIS ANALYTICS
STREAMING SQL
 Tumbling Window
[...] GROUP BY
FLOOR((SOURCE_SQL_STREAM_001.ROWTIME  TIMESTAMP
1970-01-01 00:00:00) SECOND / 10 TO SECOND)
 Sliding Window
SELECT AVG(change) OVER W1 as avg_change
FROM "SOURCE_SQL_STREAM_001"
WINDOW W1 AS (PARTITION BY ticker_symbol RANGE INTERVAL
'10' SECOND PRECEDING)
AWS KINESIS ANALYTICS
STREAMING SQL - TUMBLING WINDOW
Big Data on AWS
SQS
SQS
CONCEPTS
 Simple Queue Service
 Send, Store, Retrieve messages
 between applications
 Acts as a buffer
 At least once delivery
 FIFO is also supported
SQS
CONCEPTS
 Queues are created in regions
 14 days retention
 no message priority is supported (2 queues)
SQS
EXAMPLE
WEB SERVER
REQUEST QUEUE
RESPONSE QUEUE
PROCESSOR
NODES
Big Data on AWS
IOT
IOT
CONCEPTS
 Managed Cloud Platform from Internet of Things
 Billions of devices, trillions of messages
 Messages can be routed to other AWS services and other
devices
IOT
IOT AND BIG DATA
 IoT devices produce data
 Analyze streaming data real time
 Process and store data
 Don't worry about capacity, scaling, infrastructure
IOT
ARCHITECTURE
GENERIC IOT
THING
AWS IOT
Elasticsearch
Kinesis Firehose
Kinesis Streams
DynamoDB
Machine Learning
CloudWatch
S3
SQS, SNS
IOT
ARCHITECTURE
AWS IOT SDK
AUTHENTICATION
AUTHORIZATION
DEVICE GATEWAY
RULE ENGINE
DEVICE SHADOWS
DEVICE REGISTRY
Big Data on AWS
DATA PIPELINE
DATA PIPELINE
TERMINOLOGY
 A web service to process and move data between AWS
compute and storage services or on-premise data sources
 ETL Work鍖ow
 Runs on an EC2 instance or EMR cluster that are
provisioned automatically
DATA PIPELINE
DATA PIPELINE
ARCHITECTURE
 Data Nodes - destination for your data
 Activity
 Hive
 Pig
 Shell script
 etc
 Preconditions
 Schedules
Big Data on AWS
DYNAMO DB
DYNAMO DB
CONCEPTS
 Fully managed NoSQL database
 No visible "servers"
 Single digit latency
 Document & Key-Value models
 No storage limitations
 Runs on SSD
DYNAMO DB
CONCEPTS
 Collection of Tables
 Performance is set on the tables
 Write Capacity Units - count of 1KB blocks
 Read Capacity Units - count of 4KB blocks
 Eventually Consistent by default (data in 3 regions)
 Strong consistent reads supported
DYNAMO DB
CONCEPTS
 Schemaless
 Contains Items (rows) and Attributes (elements)
 Special Attributes
 Partition Key
 Sort Key
DYNAMO DB
DATA TYPES
 String
 Number
 Binary
 Bool
 Null
 Document (List/Map)
 Set
DYNAMO DB
DYNAMO DB IN THE AWS ECOSYSTEM
 On EMR Dynamo DB is integrated with Hive
 Copy data to/from S3 with Data Pipeline
 Lambda can be used as triggers
 Move data into Redshift with the COPY command
Big Data on AWS
EMR
EMR
CONCEPTS
 Managed Cluster Platform
 Hadoop, Spark, Presto, HBase, etc...
 Master, Core and Task Nodes
 Single AZ concept
EMR
CONCEPTS
EMR
CONCEPTS
EMR
CORE NODE
 Like a slave node
 Runs tasks
 HDFS
 Data node, Node Manager, Application Master
EMR
TASK NODE
 Like a slave node
 No HDFS
 Can be added/remove from a running cluster
 Extra compute capacity
EMR
STORAGE OPTIONS
 Instance Store
 ephemeral - deleted when instance terminates/lost
 use when High I/O performance is necessary
 EBS for HDFS
 EMRFS
EMR
EMRFS
 Implementation of HDFS
 Wrapper over S3
 Resize, terminate clusters without loosing data
 Multiple clusters can point to the same data in S3
 EMRFS & HDFS
 S3DistCp
EMR
EMRFS - CONSISTENT VIEWS
 S3
 Read After Write consistent for new data
 Eventual consistent for overwrite & delete
 Solve it with Consistent Views switch
EMR
INSTANCE TYPES
 Guidelines by Amazon
 Map Reduce
 Batch Oriented - M3 & M4 instance types
 Machine Learning
 P2, C3, C4
 Spark
 R3, R4
 Large Instance store for HDFS
 I2, D2
Big Data on AWS
LAMBDA
LAMBDA
CONCEPTS
 Function as a Service
 Billed for the ms of use
 Isolated & Stateless
 Persistence - your responsibility
 Event-driven
LAMBDA
LIMITS
 /tmp space - 512MB
 threads - 1,024
 max execution duration - 300 seconds
LAMBDA
ARCHITECTURE
EVENT LAMBDA
EVENT/
DESTINATION
Event
Data
Result
LAMBDA
EXAMPLES
S3 LAMBDA
FILE WITH
WATERMARK
new 鍖le
Add Watermark
DYNAMO DB LAMBDA
change
data
EMAIL WITH
REPORT
Big Data on AWS
REDSHIFT
REDSHIFT
CONCEPTS
 Fully managed petabyte scale data warehouse
 MPP (Massively Parallel Processing database)
 OLAP & BI applications
 ANSI SQL compatible
 Column oriented
 Single AZ
 Backups to S3
REDSHIFT
ARCHITECTURE
LEADER NODE
COMPUTE NODE COMPUTE NODE COMPUTE NODE
REDSHIFT
LEADER NODE
 SQL Endpoint
 Coordinates parallel query execution
 Stores metadata
REDSHIFT
COMPUTE NODES
 Execute queries in parallel
 Scale out/in, up/down
REDSHIFT
COLUMNAR DATABASE
 Stores data on disk grouped by columns, not rows
Row based storage Column based storage
REDSHIFT
BENEFITS
 Queries use fewer columns - less disk I/O
 Data aggregation (eg. SUM(sales))
 Compression
Big Data on AWS
QUICKSIGHT
QUICKSIGHT
CONCEPTS
 Cloud based analytics service
 Build visualizations
 Ad-hoc analysis
 Connect to AWS services, EC2 or on-premises DB
QUICKSIGHT
SUPPORTED DATA SOURCES
 Redshift
 Aurora
 Athena
 RDS (Maria DB, SQL Server, MySQL, PostgreSQL)
 Files
 Salesforce
QUICKSIGHT
Big Data on AWS
AWS BIG DATA
READING MATERIALS
 Kinesis
 Kinesis Firehose Transformation with Lambda
 Implementing producers with Amazon Kinesis Producer Library
 EMR
 Best practices for Amazon EMR (2013)
 Lambda
 Big Data processing with serverless MapReduce
 Redshift
 Redshift Table Design
 Optimizing for Star Schemas and Interleaved Sorting
AWS BIG DATA
HOMEWORK - OPTIONAL
1. Create a transient EMR cluster that automatically starts
your application (Hive, Pig, Spark, etc...)
2. Create a Redshift cluster, experiment with the COPY
command (bulk load rows) vs INSERT statement
 100 rows at least
Note: Make sure you do not forget to delete the created
resources ...
THANK YOU
Ad

Recommended

Aws Kinesis
Aws Kinesis
Szilveszter Moln叩r
Big data on aws
Big data on aws
Serkan zal
20141021 AWS Cloud Taekwon - Big Data on AWS
20141021 AWS Cloud Taekwon - Big Data on AWS
Amazon Web Services Korea
Amazon Elastic Map Reduce - Ian Meyers
Amazon Elastic Map Reduce - Ian Meyers
huguk
Highlights of AWS ReInvent 2023 (Announcements and Best Practices)
Highlights of AWS ReInvent 2023 (Announcements and Best Practices)
Emprovise
AWS Innovate: Build a Data Lake on AWS- Johnathon Meichtry
AWS Innovate: Build a Data Lake on AWS- Johnathon Meichtry
Amazon Web Services Korea
Get Value from Your Data
Get Value from Your Data
Danilo Poccia
Get Value From Your Data
Get Value From Your Data
Danilo Poccia
Data Analytics on AWS
Data Analytics on AWS
Danilo Poccia
Big Data Day LA 2015 - The AWS Big Data Platform by Michael Limcaco of Amazon
Big Data Day LA 2015 - The AWS Big Data Platform by Michael Limcaco of Amazon
Data Con LA
AWS Floor 28 - Building Data lake on AWS
AWS Floor 28 - Building Data lake on AWS
Adir Sharabi
Em tempo real: Ingest達o, processamento e analise de dados
Em tempo real: Ingest達o, processamento e analise de dados
Amazon Web Services LATAM
Builders' Day - Building Data Lakes for Analytics On AWS LC
Builders' Day - Building Data Lakes for Analytics On AWS LC
Amazon Web Services LATAM
Make your data fly - Building data platform in AWS
Make your data fly - Building data platform in AWS
Kimmo Kantoj辰rvi
Aws architecture problems while being fancy
Aws architecture problems while being fancy
Goran Kopevski
谿場螳 AWS 碁碁(蟲襦,螳,蟲) - AWS 蠍磯 觜一危 覦覯 (蟾狩 襭讀 ろ)
谿場螳 AWS 碁碁(蟲襦,螳,蟲) - AWS 蠍磯 觜一危 覦覯 (蟾狩 襭讀 ろ)
Amazon Web Services Korea
Data Analysis - Journey Through the Cloud
Data Analysis - Journey Through the Cloud
Ian Massingham
Big Data Architecture and Design Patterns
Big Data Architecture and Design Patterns
John Yeung
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
Amazon Web Services LATAM
Architecting Data Lakes on AWS
Architecting Data Lakes on AWS
Sajith Appukuttan
Big data and Analytics on AWS
Big data and Analytics on AWS
2nd Watch
2017 AWS DB Day | Amazon DynamoDB 觜, 螳 覦 蠏 蠍磯 螳
2017 AWS DB Day | Amazon DynamoDB 觜, 螳 覦 蠏 蠍磯 螳
Amazon Web Services Korea
Introduction to AWS Big Data
Introduction to AWS Big Data
Omid Vahdaty
Building Data Analytics pipelines in the cloud using serverless technology
Building Data Analytics pipelines in the cloud using serverless technology
Domino Data Lab
Cutting to the chase for Machine Learning Analytics Ecosystem & AWS Lake Form...
Cutting to the chase for Machine Learning Analytics Ecosystem & AWS Lake Form...
AWS Riyadh User Group
Re:Invent 2018 Database Announcements
Re:Invent 2018 Database Announcements
Steven Ensslen
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
Sungmin Kim
多Qui辿n es Amazon Web Services?
多Qui辿n es Amazon Web Services?
Software Guru
AWS VPC, ELB, Route53 and CloudFront
AWS VPC, ELB, Route53 and CloudFront
Szilveszter Moln叩r
Introduction 2 to aws and storage options
Introduction 2 to aws and storage options
Szilveszter Moln叩r

More Related Content

Similar to Big Data on AWS (20)

Data Analytics on AWS
Data Analytics on AWS
Danilo Poccia
Big Data Day LA 2015 - The AWS Big Data Platform by Michael Limcaco of Amazon
Big Data Day LA 2015 - The AWS Big Data Platform by Michael Limcaco of Amazon
Data Con LA
AWS Floor 28 - Building Data lake on AWS
AWS Floor 28 - Building Data lake on AWS
Adir Sharabi
Em tempo real: Ingest達o, processamento e analise de dados
Em tempo real: Ingest達o, processamento e analise de dados
Amazon Web Services LATAM
Builders' Day - Building Data Lakes for Analytics On AWS LC
Builders' Day - Building Data Lakes for Analytics On AWS LC
Amazon Web Services LATAM
Make your data fly - Building data platform in AWS
Make your data fly - Building data platform in AWS
Kimmo Kantoj辰rvi
Aws architecture problems while being fancy
Aws architecture problems while being fancy
Goran Kopevski
谿場螳 AWS 碁碁(蟲襦,螳,蟲) - AWS 蠍磯 觜一危 覦覯 (蟾狩 襭讀 ろ)
谿場螳 AWS 碁碁(蟲襦,螳,蟲) - AWS 蠍磯 觜一危 覦覯 (蟾狩 襭讀 ろ)
Amazon Web Services Korea
Data Analysis - Journey Through the Cloud
Data Analysis - Journey Through the Cloud
Ian Massingham
Big Data Architecture and Design Patterns
Big Data Architecture and Design Patterns
John Yeung
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
Amazon Web Services LATAM
Architecting Data Lakes on AWS
Architecting Data Lakes on AWS
Sajith Appukuttan
Big data and Analytics on AWS
Big data and Analytics on AWS
2nd Watch
2017 AWS DB Day | Amazon DynamoDB 觜, 螳 覦 蠏 蠍磯 螳
2017 AWS DB Day | Amazon DynamoDB 觜, 螳 覦 蠏 蠍磯 螳
Amazon Web Services Korea
Introduction to AWS Big Data
Introduction to AWS Big Data
Omid Vahdaty
Building Data Analytics pipelines in the cloud using serverless technology
Building Data Analytics pipelines in the cloud using serverless technology
Domino Data Lab
Cutting to the chase for Machine Learning Analytics Ecosystem & AWS Lake Form...
Cutting to the chase for Machine Learning Analytics Ecosystem & AWS Lake Form...
AWS Riyadh User Group
Re:Invent 2018 Database Announcements
Re:Invent 2018 Database Announcements
Steven Ensslen
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
Sungmin Kim
多Qui辿n es Amazon Web Services?
多Qui辿n es Amazon Web Services?
Software Guru
Data Analytics on AWS
Data Analytics on AWS
Danilo Poccia
Big Data Day LA 2015 - The AWS Big Data Platform by Michael Limcaco of Amazon
Big Data Day LA 2015 - The AWS Big Data Platform by Michael Limcaco of Amazon
Data Con LA
AWS Floor 28 - Building Data lake on AWS
AWS Floor 28 - Building Data lake on AWS
Adir Sharabi
Em tempo real: Ingest達o, processamento e analise de dados
Em tempo real: Ingest達o, processamento e analise de dados
Amazon Web Services LATAM
Builders' Day - Building Data Lakes for Analytics On AWS LC
Builders' Day - Building Data Lakes for Analytics On AWS LC
Amazon Web Services LATAM
Make your data fly - Building data platform in AWS
Make your data fly - Building data platform in AWS
Kimmo Kantoj辰rvi
Aws architecture problems while being fancy
Aws architecture problems while being fancy
Goran Kopevski
谿場螳 AWS 碁碁(蟲襦,螳,蟲) - AWS 蠍磯 觜一危 覦覯 (蟾狩 襭讀 ろ)
谿場螳 AWS 碁碁(蟲襦,螳,蟲) - AWS 蠍磯 觜一危 覦覯 (蟾狩 襭讀 ろ)
Amazon Web Services Korea
Data Analysis - Journey Through the Cloud
Data Analysis - Journey Through the Cloud
Ian Massingham
Big Data Architecture and Design Patterns
Big Data Architecture and Design Patterns
John Yeung
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
Amazon Web Services LATAM
Architecting Data Lakes on AWS
Architecting Data Lakes on AWS
Sajith Appukuttan
Big data and Analytics on AWS
Big data and Analytics on AWS
2nd Watch
2017 AWS DB Day | Amazon DynamoDB 觜, 螳 覦 蠏 蠍磯 螳
2017 AWS DB Day | Amazon DynamoDB 觜, 螳 覦 蠏 蠍磯 螳
Amazon Web Services Korea
Introduction to AWS Big Data
Introduction to AWS Big Data
Omid Vahdaty
Building Data Analytics pipelines in the cloud using serverless technology
Building Data Analytics pipelines in the cloud using serverless technology
Domino Data Lab
Cutting to the chase for Machine Learning Analytics Ecosystem & AWS Lake Form...
Cutting to the chase for Machine Learning Analytics Ecosystem & AWS Lake Form...
AWS Riyadh User Group
Re:Invent 2018 Database Announcements
Re:Invent 2018 Database Announcements
Steven Ensslen
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
Sungmin Kim
多Qui辿n es Amazon Web Services?
多Qui辿n es Amazon Web Services?
Software Guru

More from Szilveszter Moln叩r (7)

AWS VPC, ELB, Route53 and CloudFront
AWS VPC, ELB, Route53 and CloudFront
Szilveszter Moln叩r
Introduction 2 to aws and storage options
Introduction 2 to aws and storage options
Szilveszter Moln叩r
Introduction to AWS
Introduction to AWS
Szilveszter Moln叩r
Lambda architecture
Lambda architecture
Szilveszter Moln叩r
Introduction to Regression Analysis
Introduction to Regression Analysis
Szilveszter Moln叩r
2015 Mar 12 - IoT Conference, Moscow - Beyond Fitness Trackers: Discovering H...
2015 Mar 12 - IoT Conference, Moscow - Beyond Fitness Trackers: Discovering H...
Szilveszter Moln叩r
MongoDB + Node.JS + EPAM ROAD
MongoDB + Node.JS + EPAM ROAD
Szilveszter Moln叩r
AWS VPC, ELB, Route53 and CloudFront
AWS VPC, ELB, Route53 and CloudFront
Szilveszter Moln叩r
Introduction 2 to aws and storage options
Introduction 2 to aws and storage options
Szilveszter Moln叩r
Introduction to Regression Analysis
Introduction to Regression Analysis
Szilveszter Moln叩r
2015 Mar 12 - IoT Conference, Moscow - Beyond Fitness Trackers: Discovering H...
2015 Mar 12 - IoT Conference, Moscow - Beyond Fitness Trackers: Discovering H...
Szilveszter Moln叩r
Ad

Recently uploaded (20)

Folding Cheat Sheet # 9 - List Unfolding as the Computational Dual of ...
Folding Cheat Sheet # 9 - List Unfolding as the Computational Dual of ...
Philip Schwarz
ElectraSuite_Prsentation(online voting system).pptx
ElectraSuite_Prsentation(online voting system).pptx
mrsinankhan01
OpenChain Webinar - AboutCode - Practical Compliance in One Stack Licensing...
OpenChain Webinar - AboutCode - Practical Compliance in One Stack Licensing...
Shane Coughlan
Best MLM Compensation Plans for Network Marketing Success in 2025
Best MLM Compensation Plans for Network Marketing Success in 2025
LETSCMS Pvt. Ltd.
Complete WordPress Programming Guidance Book
Complete WordPress Programming Guidance Book
Shabista Imam
Decipher SEO Solutions for your startup needs.
Decipher SEO Solutions for your startup needs.
mathai2
Best Practice for LLM Serving in the Cloud
Best Practice for LLM Serving in the Cloud
Alluxio, Inc.
declaration of Variables and constants.pptx
declaration of Variables and constants.pptx
meemee7378
Foundations of Marketo Engage - Programs, Campaigns & Beyond - June 2025
Foundations of Marketo Engage - Programs, Campaigns & Beyond - June 2025
BradBedford3
Download Adobe Illustrator Crack free for Windows 2025?
Download Adobe Illustrator Crack free for Windows 2025?
grete1122g
Azure AI Foundry: The AI app and agent factory
Azure AI Foundry: The AI app and agent factory
Maxim Salnikov
arctitecture application system design os dsa
arctitecture application system design os dsa
za241967
HYBRIDIZATION OF ALKANES AND ALKENES ...
HYBRIDIZATION OF ALKANES AND ALKENES ...
karishmaduhijod1
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
On-Device AI: Is It Time to Go All-In, or Do We Still Need the Cloud?
On-Device AI: Is It Time to Go All-In, or Do We Still Need the Cloud?
Hassan Abid
Sysinfo OST to PST Converter Infographic
Sysinfo OST to PST Converter Infographic
SysInfo Tools
Digital Transformation: Automating the Placement of Medical Interns
Digital Transformation: Automating the Placement of Medical Interns
Safe Software
Y - Recursion The Hard Way GopherCon EU 2025
Y - Recursion The Hard Way GopherCon EU 2025
Eleanor McHugh
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
Streamlining CI/CD with FME Flow: A Practical Guide
Streamlining CI/CD with FME Flow: A Practical Guide
Safe Software
Folding Cheat Sheet # 9 - List Unfolding as the Computational Dual of ...
Folding Cheat Sheet # 9 - List Unfolding as the Computational Dual of ...
Philip Schwarz
ElectraSuite_Prsentation(online voting system).pptx
ElectraSuite_Prsentation(online voting system).pptx
mrsinankhan01
OpenChain Webinar - AboutCode - Practical Compliance in One Stack Licensing...
OpenChain Webinar - AboutCode - Practical Compliance in One Stack Licensing...
Shane Coughlan
Best MLM Compensation Plans for Network Marketing Success in 2025
Best MLM Compensation Plans for Network Marketing Success in 2025
LETSCMS Pvt. Ltd.
Complete WordPress Programming Guidance Book
Complete WordPress Programming Guidance Book
Shabista Imam
Decipher SEO Solutions for your startup needs.
Decipher SEO Solutions for your startup needs.
mathai2
Best Practice for LLM Serving in the Cloud
Best Practice for LLM Serving in the Cloud
Alluxio, Inc.
declaration of Variables and constants.pptx
declaration of Variables and constants.pptx
meemee7378
Foundations of Marketo Engage - Programs, Campaigns & Beyond - June 2025
Foundations of Marketo Engage - Programs, Campaigns & Beyond - June 2025
BradBedford3
Download Adobe Illustrator Crack free for Windows 2025?
Download Adobe Illustrator Crack free for Windows 2025?
grete1122g
Azure AI Foundry: The AI app and agent factory
Azure AI Foundry: The AI app and agent factory
Maxim Salnikov
arctitecture application system design os dsa
arctitecture application system design os dsa
za241967
HYBRIDIZATION OF ALKANES AND ALKENES ...
HYBRIDIZATION OF ALKANES AND ALKENES ...
karishmaduhijod1
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
On-Device AI: Is It Time to Go All-In, or Do We Still Need the Cloud?
On-Device AI: Is It Time to Go All-In, or Do We Still Need the Cloud?
Hassan Abid
Sysinfo OST to PST Converter Infographic
Sysinfo OST to PST Converter Infographic
SysInfo Tools
Digital Transformation: Automating the Placement of Medical Interns
Digital Transformation: Automating the Placement of Medical Interns
Safe Software
Y - Recursion The Hard Way GopherCon EU 2025
Y - Recursion The Hard Way GopherCon EU 2025
Eleanor McHugh
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
Streamlining CI/CD with FME Flow: A Practical Guide
Streamlining CI/CD with FME Flow: A Practical Guide
Safe Software
Ad

Big Data on AWS