SlideShare ist ein Scribd-Unternehmen logo
1 von 127
Downloaden Sie, um offline zu lesen
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Another Day in the Life of a Cloud
Network Engineer at Netflix
Joel Kodama
Cloud Network SRE
Netflix
N E T 3 1 2
Donavan Fritz
Cloud Network SRE
Netflix
RE:INVENT 2018
NET-312
AWS Cloud
RE:INVENT 2018
NET-312
AWS Cloud
Amazon EC2 Classic VPC
VPN
Connection
RE:INVENT 2018
NET-312
Subnets
IGWs
VGWs
NGWs
Route tables
Endpoints
Prefix lists
AWS Direct Connect
CGWs
RE:INVENT 2018
NET-312
?
?
?
?
?
?
??
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
RE:INVENT 2018
NET-312
Amazon EC2 Classic VPC
Zone 1
Region
AWS Cloud
Zone 2 Zone 3 Zone 1 Zone 2 Zone 3
Public Public Public
Private Private Private
NAT Gateway NAT Gateway NAT Gateway
RE:INVENT 2018
NET-312
Amazon EC2 Classic VPC
Zone 1
Region
AWS Cloud
Zone 2 Zone 3 Zone 1 Zone 2 Zone 3
Public Public Public
Private Private Private
NAT Gateway NAT Gateway NAT Gateway
RE:INVENT 2018
NET-312
●Inter-VPC communication
VPC
Region
VPC
Instances Instances
1
2
3
AWS Cloud
VPC
peering
Internet
RE:INVENT 2018
NET-312
Bidirectional private IP
communication
Internet
VPC peering
AWS Direct
Connect
●Inter-VPC communication
RE:INVENT 2018
NET-312
Bidirectional private IP
communication
Internet
VPC peering
AWS Direct
Connect
●Inter-VPC communication
RE:INVENT 2018
NET-312
Bidirectional private IP
communication
Security group
references
Internet
VPC peering
AWS Direct
Connect
●Inter-VPC communication
RE:INVENT 2018
NET-312
Bidirectional private IP
communication
Security group
references
Internet
VPC peering
AWS Direct
Connect
●Inter-VPC communication
RE:INVENT 2018
NET-312
Bidirectional private IP
communication
Security group
references
No bandwidth
constraints
Internet
VPC peering
AWS Direct
Connect
●Inter-VPC communication
RE:INVENT 2018
NET-312
Bidirectional private IP
communication
Security group
references
No bandwidth
constraints
Internet
VPC peering
AWS Direct
Connect
●Inter-VPC communication
RE:INVENT 2018
NET-312
Account 4 VPC
Account 1 VPC Account 2 VPC
Account 3 VPC
Region 1
Instances
Instances
Instances Instances
RE:INVENT 2018
NET-312
AWS Cloud
VPC
us-west-2
Office building
Netflix MPLS Backbone
VPC
us-east-1
VPC
eu-west-1
SEA IAD LHR
Office building
RE:INVENT 2018
NET-312
Single unified network
across all accounts and regions
RE:INVENT 2018
NET-312
Unique
RE:INVENT 2018
NET-312
$ python3
>>>
RE:INVENT 2018
NET-312
$ python3
>>> import cldnet
>>>
RE:INVENT 2018
NET-312
$ python3
>>> import cldnet
>>>
>>> vpc0 = cldnet.create_vpc(account='1234567', region='us-east-1', name=‘vpc0', prefix_length=16)
>>> vpc1 = cldnet.create_vpc(account='9876543', region=‘us-east-1', name=‘vpc1', prefix_length=16)
>>>
RE:INVENT 2018
NET-312
$ python3
>>> import cldnet
>>>
>>> vpc0 = cldnet.create_vpc(account='1234567', region='us-east-1', name=‘vpc0', prefix_length=16)
>>> vpc1 = cldnet.create_vpc(account='9876543', region=‘us-east-1', name=‘vpc1', prefix_length=16)
>>>
>>> vpc0.peer_to(vpc1)
>>>
RE:INVENT 2018
NET-312
$ python3
>>> import cldnet
>>>
>>> vpc0 = cldnet.create_vpc(account='1234567', region='us-east-1', name=‘vpc0', prefix_length=16)
>>> vpc1 = cldnet.create_vpc(account='9876543', region=‘us-east-1', name=‘vpc1', prefix_length=16)
>>>
>>> vpc0.peer_to(vpc1)
>>>
>>> vpc0.resize(prefix_length=16)
>>>
RE:INVENT 2018
NET-312
$ python3
>>> import cldnet
>>>
>>> cldnet.standardize_vpc_peerings(”peerings.yaml”)
>>>
# peerings.yaml
---
VpcGroups:
UsWest2FullMesh:
- vpc-111111
- vpc-222222
- vpc-333333
UsEast1FullMesh:
- vpc-444444
- vpc-555555
- vpc-666666
VpcPeerings:
- FromGroup: UsEast1FullMesh
ToGroup: UsEast1FullMesh
- FromGroup: UsWest2FullMesh
ToGroup: UsWest2FullMesh
RE:INVENT 2018
NET-312
RE:INVENT 2018
NET-312
Account 1 VPC
us-west-2
Instances
AWS Cloud
Account 1 VPC
us-east-1
Instances
Account 1 VPC
eu-west-1
Instances
RE:INVENT 2018
NET-312
Network-level
encryption
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Network-level
encryption
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Network-level
encryption
No bandwidth
constraints
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Network-level
encryption
No bandwidth
constraints
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Network-level
encryption
No bandwidth
constraints
Security group
references
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Network-level
encryption
No bandwidth
constraints
Security group
references
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Network-level
encryption
No bandwidth
constraints
Security group
references
Summarizable
inter-region VPC
routes
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Network-level
encryption
No bandwidth
constraints
Security group
references
Summarizable
inter-region VPC
routes
Inter Region VPC peering
AWS Direct Connect
●VPC inter-region communication
RE:INVENT 2018
NET-312
Pushing limits
RE:INVENT 2018
NET-312
RE:INVENT 2018
NET-312
●Titus network requirements
IP per container (fidelity of IP address)
Fast deployments
RE:INVENT 2018
NET-312
IP
IPv4 addressElastic Network
Interface
Amazon EC2
Instance
RE:INVENT 2018
NET-312
IP
IP
IP
IP
IP
IP
IPv4 address Container
Elastic Network
Interface
Amazon
EC2 Instance
RE:INVENT 2018
NET-312
●Container startup AWS API calls
1. CreateNetworkInterface
2. AttachNetworkInterface
3. AssignPrivateIpAddress
4. ModifyNetworkInterfaceAttribute
RE:INVENT 2018
NET-312
Can we populate network
interfaces at start up?
RE:INVENT 2018
NET-312
0
100000
200000
300000
400000
500000
600000
1 2 3 4 5
NumberofIPaddress
Instances w/ 8 Elastic Network Interfaces (ENIs)
2 IPs per ENI
4 IPs per ENI
8 IPs per ENI
16 IPs per ENI
32 IPs per ENI
1x /16 IPv4 CIDR
5x /16 IPv4 CIDR
m4
RE:INVENT 2018
NET-312
VPC
Public
Private
NAT Gateway
Private
Availability Zone
Public
Private
NAT Gateway
Private
Availability Zone
Public
Private
NAT Gateway
Private
Availability Zone
EC2 Instances
Containers
EC2 Instances
Containers
EC2 Instances
Containers
EC2 Instances
Containers
EC2 Instances
Containers
EC2 Instances
Containers
RE:INVENT 2018
NET-312
IP isolation
Co-tenant
●Titus network options
RE:INVENT 2018
NET-312
IP isolation
Co-tenant
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
Co-tenant
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
Co-tenant
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
AWS API isolation
Co-tenant
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
AWS API isolation
Co-tenant
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
AWS API isolation Max number of IPs
Co-tenant ~98K shared
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
AWS API isolation Max number of IPs
Co-tenant ~98K shared
Dedicated subnet ~196K
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
AWS API isolation Max number of IPs
Co-tenant ~98K shared
Dedicated subnet ~196K
Dedicated VPC ~295K
●Titus network options
RE:INVENT 2018
NET-312
IP isolation Shared security
groups
AWS API isolation Max number of IPs
Co-tenant ~98K shared
Dedicated subnet ~196K
Dedicated VPC ~295K
Dedicated account ~295K
●Titus network options
RE:INVENT 2018
NET-312
RE:INVENT 2018
NET-312
●DNS service discovery
RE:INVENT 2018
NET-312
Auto Scaling group State
Eureka
Foo
Bar
Where is bar?
●DNS service discovery
RE:INVENT 2018
NET-312
Auto Scaling group
Auto Scaling group State
Eureka
In service
Out of service
Foo
Bar v0
Bar v1
Where is bar?
●DNS service discovery
RE:INVENT 2018
NET-312
Auto Scaling group
Auto Scaling group State
Eureka
Out of service
In service
Foo
Bar v0
Bar v1
Where is bar?
●DNS service discovery
RE:INVENT 2018
NET-312
Eureka
Foo
Where is
bar.netflix.net?
●DNS service discovery
Auto Scaling group
Auto Scaling group State
Out of service
In service
Bar v0
Bar v1
RE:INVENT 2018
NET-312
Eureka Amazon Route53
Sync State
Foo
Where is
bar.netflix.net?
●DNS service discovery
Auto Scaling group
Auto Scaling group State
Out of service
In service
Bar v0
Bar v1
RE:INVENT 2018
NET-312
Eureka Amazon Route53
Sync State
Foo
Where is
bar.netflix.net?
●DNS service discovery
Auto Scaling group
Auto Scaling group State
Out of service
In service
Bar v0
Bar v1
RE:INVENT 2018
NET-312
Decision time
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
Route53
auto naming
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
Route53
auto naming
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
Route53
auto naming
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
Route53
auto naming
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
Route53
auto naming
???
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto remove stale
DNS records
Allow
“out of service”
AWS API rate limits
Existing solution
Route53
auto naming
Eureka DNS
●DNS service discovery decision
RE:INVENT 2018
NET-312
Auto Scaling group
Auto Scaling group State
Eureka Amazon Route53
Sync
In service
State
Out of service
Foo
Bar
Bar
Where is
bar.netflix.net?
RE:INVENT 2018
NET-312
Auto Scaling group
Auto Scaling group State
Eureka
In service
Out of service
Foo
Bar
Bar
Where is
bar.netflix.net?
Auto Scaling group
Eureka DNS
RE:INVENT 2018
NET-312
Static IPv4 IPv6 UDP
Authoritative name server static IP
RE:INVENT 2018
NET-312
Static IPv4 IPv6 UDP
Network Load
Balancer
Authoritative name server static IP
RE:INVENT 2018
NET-312
Static IPv4 IPv6 UDP
Network Load
Balancer
Authoritative name server static IP
RE:INVENT 2018
NET-312
Static IPv4 IPv6 UDP
Network Load
Balancer
Elastic IP
Authoritative name server static IP
RE:INVENT 2018
NET-312
Static IPv4 IPv6 UDP
Network Load
Balancer
Elastic IP
Authoritative name server static IP
RE:INVENT 2018
NET-312
Static IPv4 IPv6 UDP
Network Load
Balancer
Elastic IP
Elastic network
interface
Authoritative name server static IP
RE:INVENT 2018
NET-312
Static IPv4 IPv6 UDP
Network Load
Balancer
Elastic IP
Elastic network
interface
Authoritative name server static IP
RE:INVENT 2018
NET-312
Authoritative name server static IP
VPC
us-west-2
Subnet
203.0.113.100
2001:db8::100
RE:INVENT 2018
NET-312
Eureka DNS v0
Authoritative name server static IP
VPC
us-west-2
Subnet
203.0.113.100
2001:db8::100
RE:INVENT 2018
NET-312
Eureka DNS v0
Authoritative name server static IP
VPC
us-west-2
Subnet
203.0.113.100
2001:db8::100
Eureka DNS v1
RE:INVENT 2018
NET-312
Eureka DNS v1 Eureka DNS v0
Authoritative name server static IP
VPC
us-west-2
Subnet
203.0.113.100
2001:db8::100
RE:INVENT 2018
NET-312
Eureka DNS v1
Authoritative name server static IP
VPC
us-west-2
Subnet
203.0.113.100
2001:db8::100
RE:INVENT 2018
NET-312
Authoritative name server static IP
VPC
Public
us-west-2
AWS Cloud
us-west-2a
Auto Scaling group
Eureka DNS
Public
us-west-2b
Eureka DNS
Public
us-west-2c
Eureka DNSEureka DNS Eureka DNS Eureka DNS
RE:INVENT 2018
NET-312
DNS delegation hierarchy
eureka.netflix.net
RE:INVENT 2018
NET-312
DNS delegation hierarchy
test prod
eureka.netflix.net
RE:INVENT 2018
NET-312
DNS delegation hierarchy
test
us-east-1 us-west-2
prod
us-east-1 us-west-2
eureka.netflix.net
RE:INVENT 2018
NET-312
DNS delegation hierarchy
test
us-east-1 us-west-2
MyService MyService
prod
us-east-1 us-west-2
MyService MyService
eureka.netflix.net
RE:INVENT 2018
NET-312
DNS delegation hierarchy
test
us-east-1 us-west-2
MyService MyService
prod
us-east-1 us-west-2
MyService MyService
myservice.us-east-1.test.eureka.netflix.net
myservice.us-west-2.test.eureka.netflix.net
myservice.us-east-1.prod.eureka.netflix.net
myservice.us-west-2.prod.eureka.netflix.net
eureka.netflix.net
RE:INVENT 2018
NET-312
Let’s be more proactive!
RE:INVENT 2018
NET-312
DNS steering
VPC
us-west-2
AWS Cloud
VPC
us-east-1
VPC
eu-west-1
Where is www.netflix.com?
RE:INVENT 2018
NET-312
DNS steering
VPC
us-west-2
AWS Cloud
VPC
us-east-1
VPC
eu-west-1
?
?
?
RE:INVENT 2018
NET-312
DNS steering: Geography
VPC
us-west-2
AWS Cloud
VPC
us-east-1
VPC
eu-west-1
?
?
?
RE:INVENT 2018
NET-312
DNS steering: Geography
VPC
us-west-2
AWS Cloud
VPC
us-east-1
VPC
eu-west-1
Users in San Francisco
RE:INVENT 2018
NET-312
DNS steering: Geography
VPC
us-west-2
AWS Cloud
VPC
us-east-1
VPC
eu-west-1
Users in London
RE:INVENT 2018
NET-312
DNS steering: Geography
Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8
Latency: Not optimized
RE:INVENT 2018
NET-312
DNS steering: Geography
Perfect
balance
Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8
Latency: Not optimized
RE:INVENT 2018
NET-312
DNS steering: Geography
Perfect
balance
Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8
Latency: Not optimized
Availability
risk
RE:INVENT 2018
NET-312
DNS steering: Geography
Perfect
balance
(3 region)
Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8
Latency: Not optimized
Availability
risk
Cost driver
Perfect
balance
(2 region)
We can do one better
RE:INVENT 2018
NET-312
Amazon Route53
latency based routing
RE:INVENT 2018
NET-312
DNS steering: Route 53 latency routing
VPC
us-west-2
AWS Cloud
VPC
us-east-1
Account 1 VPC
eu-west-1
Users in San Francisco
RE:INVENT 2018
NET-312
VPC
us-west-2
AWS Cloud
VPC
us-east-1
Account 1 VPC
eu-west-1
Users in London
DNS steering: Route 53 latency routing
RE:INVENT 2018
NET-312 Latency: optimized
DNS steering: Route 53 latency routing
RE:INVENT 2018
NET-312 Latency: optimized
Availability
risk
Cost driver
Perfect
balance
(3 region)
Perfect
balance
(2 region)
DNS steering: Route 53 latency routing
RE:INVENT 2018
NET-312
DNS steering
RE:INVENT 2018
NET-312
DNS steering
RE:INVENT 2018
NET-312
DNS steering
120ms
80ms
100ms
RE:INVENT 2018
NET-312
DNS steering
120ms
80ms
100ms 20ms
200ms
100ms
RE:INVENT 2018
NET-312
DNS steering
120ms
80ms
100ms
300ms
120ms
150ms
20ms
200ms
100ms
RE:INVENT 2018
NET-312
DNS steering
120ms
80ms
100ms
300ms
120ms
150ms
20ms
200ms
100ms
RE:INVENT 2018
NET-312
us-west-2 us-east-1 eu-west-1
Wisconsin, USA 100ms 80ms 120ms
Argentina 150ms 120ms 300ms
Spain 200ms 100ms 20ms
Real User Measurements
DNS steering: Route 53 latency routing
RE:INVENT 2018
NET-312
us-west-2 us-east-1 eu-west-1
Wisconsin, USA 100ms 80ms 120ms
Argentina 150ms 120ms 300ms
Spain 200ms 100ms 20ms
Real User Measurements
DNS steering: Geography
RE:INVENT 2018
NET-312
us-west-2 us-east-1 eu-west-1
Wisconsin, USA 100ms 80ms 120ms
Argentina 150ms 120ms 300ms
Spain 200ms 100ms 20ms
Geo IP Prefix
Wisconsin, USA 203.0.113.0/24
Argentina 192.0.2.0/24
Spain 2001:DB8::/32
Geo Database
Real User Measurements
DNS steering: Geography
RE:INVENT 2018
NET-312
Prefix steering
RE:INVENT 2018
NET-312
DNS steering: Prefix steering
us-west-2 us-east-1 eu-west-1
203.0.113.0/24 100ms 80ms 120ms
192.0.2.0/24 150ms 120ms 300ms
2001:DB8::/32 200ms 100ms 20ms
Real User Measurements
RE:INVENT 2018
NET-312
DNS steering: Prefix steering
us-west-2 us-east-1 eu-west-1
203.0.113.0/24 100ms 80ms 120ms
192.0.2.0/24 150ms 120ms 300ms
2001:DB8::/32 200ms 100ms 20ms
Real User Measurements
100ms latency delta
RE:INVENT 2018
NET-312
DNS steering: Prefix steering
Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8
Latency: delta optimized
Perfect
balance
Availability
risk
RE:INVENT 2018
NET-312
RE:INVENT 2018
NET-312
RE:INVENT 2018
NET-312
Decision time
Thank you!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Thank you!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Joel Kodama
Cloud Network SRE
jkodama@netflix.com
Donavan Fritz
Cloud Network SRE
dfritz@netflix.com
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.

Weitere ähnliche Inhalte

Was ist angesagt?

Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...
Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...
Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...Amazon Web Services
 
具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)
具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)
具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)Amazon Web Services
 
[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...
[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...
[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...Amazon Web Services
 
Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...
Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...
Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...Amazon Web Services
 
Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...
Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...
Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...Amazon Web Services
 
OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)
OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)
OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)Amazon Web Services
 
Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018
Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018
Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018Amazon Web Services
 
Networking Advanced VPC Design and New Capabilities
Networking Advanced VPC Design and New CapabilitiesNetworking Advanced VPC Design and New Capabilities
Networking Advanced VPC Design and New CapabilitiesAmazon Web Services
 
Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...
Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...
Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...Amazon Web Services
 
From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...
From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...
From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...Amazon Web Services
 
How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...
How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...
How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...Amazon Web Services
 
Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...
Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...
Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...Amazon Web Services
 
Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018
Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018
Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018Amazon Web Services
 
Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...
Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...
Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...Amazon Web Services
 
Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...
Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...
Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...Amazon Web Services
 
Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...
Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...
Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...Amazon Web Services
 
Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018
Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018
Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018Amazon Web Services
 
Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...
Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...
Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...Amazon Web Services
 
以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)
以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)
以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)Amazon Web Services
 

Was ist angesagt? (20)

Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...
Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...
Advanced VPC Design and New Capabilities for Amazon VPC (NET303) - AWS re:Inv...
 
具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)
具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)
具備高可用性和可擴展性的 Kubernetes 服務 (Amazon EKS)
 
[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...
[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...
[REPEAT 1] Elastic Load Balancing: Deep Dive and Best Practices (NET404-R1) -...
 
Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...
Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...
Interactive Zero-Touch Enterprise Networks: Nuage SD-WAN on AWS (TLC310) - AW...
 
Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...
Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...
Powering Next-Gen EC2 Instances: Deep Dive into the Nitro System (CMP303-R1) ...
 
OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)
OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)
OTT 成功的關鍵:打造影劇品質監控儀表板 (Level: 200)
 
Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018
Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018
Running Kubernetes Across Multiple AWS Accounts (CON409) - AWS re:Invent 2018
 
Run Kubernetes with Amazon EKS
Run Kubernetes with Amazon EKSRun Kubernetes with Amazon EKS
Run Kubernetes with Amazon EKS
 
Networking Advanced VPC Design and New Capabilities
Networking Advanced VPC Design and New CapabilitiesNetworking Advanced VPC Design and New Capabilities
Networking Advanced VPC Design and New Capabilities
 
Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...
Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...
Optimizing Network Performance for Amazon EC2 Instances (CMP308-R1) - AWS re:...
 
From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...
From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...
From One to Many: Diving Deeper into Evolving VPC Design (ARC310-R2) - AWS re...
 
How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...
How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...
How AI is Reimagining Software, Environments, Apps, & Programmatic Interfaces...
 
Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...
Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...
Capacity Management Made Easy with Amazon EC2 Auto Scaling (CMP377) - AWS re:...
 
Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018
Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018
Best Practices for AWS PrivateLink (NET301) - AWS re:Invent 2018
 
Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...
Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...
Deep Dive on Amazon EC2 Instances & Performance Optimization Best Practices (...
 
Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...
Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...
Reuters Lives: Scaling & Monitoring Live Video in the Cloud (DEV316-S) - AWS ...
 
Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...
Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...
Operational Excellence with Containerized Workloads Using AWS Fargate (CON320...
 
Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018
Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018
Day Two Operations of Kubernetes on AWS (GPSTEC309) - AWS re:Invent 2018
 
Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...
Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...
Earn Your DevOps Black Belt: Deployment Scenarios with AWS CloudFormation (DE...
 
以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)
以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)
以 Amazon EC2 Spot 執行個體有效控制專案成本 (Level: 200)
 

Ähnlich wie Another Day in the Life of a Cloud Network Engineer at Netflix (NET312) - AWS re:Invent 2018

利用AWS建立企業全球化網路
利用AWS建立企業全球化網路利用AWS建立企業全球化網路
利用AWS建立企業全球化網路Amazon Web Services
 
(NET405) Build a Remote Access VPN Solution on AWS
(NET405) Build a Remote Access VPN Solution on AWS(NET405) Build a Remote Access VPN Solution on AWS
(NET405) Build a Remote Access VPN Solution on AWSAmazon Web Services
 
(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014
(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014
(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014Amazon Web Services
 
AWS Networking for Migration and Hybrid Environments
AWS Networking for Migration and Hybrid EnvironmentsAWS Networking for Migration and Hybrid Environments
AWS Networking for Migration and Hybrid EnvironmentsAmazon Web Services
 
KubeCon London 2016 Ronana Cloud Native SDN
KubeCon London 2016 Ronana Cloud Native SDNKubeCon London 2016 Ronana Cloud Native SDN
KubeCon London 2016 Ronana Cloud Native SDNRomana Project
 
(NET406) Deep Dive: AWS Direct Connect and VPNs
(NET406) Deep Dive: AWS Direct Connect and VPNs(NET406) Deep Dive: AWS Direct Connect and VPNs
(NET406) Deep Dive: AWS Direct Connect and VPNsAmazon Web Services
 
Interop2018 contrail ContrailEnterpriseMulticloud
Interop2018 contrail ContrailEnterpriseMulticloudInterop2018 contrail ContrailEnterpriseMulticloud
Interop2018 contrail ContrailEnterpriseMulticloudDaisuke Nakajima
 
ARC304_From One to Many Evolving VPC Design
ARC304_From One to Many Evolving VPC DesignARC304_From One to Many Evolving VPC Design
ARC304_From One to Many Evolving VPC DesignAmazon Web Services
 
SDN, Network Virtualization and the Software Defined Data Center – Brad Hedlund
SDN, Network Virtualization and the Software Defined Data Center – Brad HedlundSDN, Network Virtualization and the Software Defined Data Center – Brad Hedlund
SDN, Network Virtualization and the Software Defined Data Center – Brad HedlundChef Software, Inc.
 
Plan Advanced AWS Networking Architectures - SRV323 - Chicago AWS Summit
Plan Advanced AWS Networking Architectures - SRV323 - Chicago AWS SummitPlan Advanced AWS Networking Architectures - SRV323 - Chicago AWS Summit
Plan Advanced AWS Networking Architectures - SRV323 - Chicago AWS SummitAmazon Web Services
 
Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018
Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018
Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018Amazon Web Services
 
Networking @Scale'19 - Getting a Taste of Your Network - Sergey Fedorov
Networking @Scale'19 - Getting a Taste of Your Network - Sergey FedorovNetworking @Scale'19 - Getting a Taste of Your Network - Sergey Fedorov
Networking @Scale'19 - Getting a Taste of Your Network - Sergey FedorovSergey Fedorov
 
Moving Enterprise Windows Workloads to AWS
Moving Enterprise Windows Workloads to AWSMoving Enterprise Windows Workloads to AWS
Moving Enterprise Windows Workloads to AWSAmazon Web Services
 
Cloud Native Lou - Networking
Cloud Native Lou - NetworkingCloud Native Lou - Networking
Cloud Native Lou - NetworkingJames Strong
 
From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018
From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018
From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018Amazon Web Services
 
AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)
AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)
AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)Amazon Web Services
 
Moving Enterprise Windows Workloads to AWS – Peter Stanski
Moving Enterprise Windows Workloads to AWS – Peter StanskiMoving Enterprise Windows Workloads to AWS – Peter Stanski
Moving Enterprise Windows Workloads to AWS – Peter StanskiAmazon Web Services
 
DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...
DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...
DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...Amazon Web Services
 

Ähnlich wie Another Day in the Life of a Cloud Network Engineer at Netflix (NET312) - AWS re:Invent 2018 (20)

利用AWS建立企業全球化網路
利用AWS建立企業全球化網路利用AWS建立企業全球化網路
利用AWS建立企業全球化網路
 
(NET405) Build a Remote Access VPN Solution on AWS
(NET405) Build a Remote Access VPN Solution on AWS(NET405) Build a Remote Access VPN Solution on AWS
(NET405) Build a Remote Access VPN Solution on AWS
 
(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014
(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014
(GAM304) How Riot Games re:Invented Their AWS Model | AWS re:Invent 2014
 
AWS Networking for Migration and Hybrid Environments
AWS Networking for Migration and Hybrid EnvironmentsAWS Networking for Migration and Hybrid Environments
AWS Networking for Migration and Hybrid Environments
 
KubeCon London 2016 Ronana Cloud Native SDN
KubeCon London 2016 Ronana Cloud Native SDNKubeCon London 2016 Ronana Cloud Native SDN
KubeCon London 2016 Ronana Cloud Native SDN
 
(NET406) Deep Dive: AWS Direct Connect and VPNs
(NET406) Deep Dive: AWS Direct Connect and VPNs(NET406) Deep Dive: AWS Direct Connect and VPNs
(NET406) Deep Dive: AWS Direct Connect and VPNs
 
Interop2018 contrail ContrailEnterpriseMulticloud
Interop2018 contrail ContrailEnterpriseMulticloudInterop2018 contrail ContrailEnterpriseMulticloud
Interop2018 contrail ContrailEnterpriseMulticloud
 
ARC304_From One to Many Evolving VPC Design
ARC304_From One to Many Evolving VPC DesignARC304_From One to Many Evolving VPC Design
ARC304_From One to Many Evolving VPC Design
 
SDN, Network Virtualization and the Software Defined Data Center – Brad Hedlund
SDN, Network Virtualization and the Software Defined Data Center – Brad HedlundSDN, Network Virtualization and the Software Defined Data Center – Brad Hedlund
SDN, Network Virtualization and the Software Defined Data Center – Brad Hedlund
 
Plan Advanced AWS Networking Architectures - SRV323 - Chicago AWS Summit
Plan Advanced AWS Networking Architectures - SRV323 - Chicago AWS SummitPlan Advanced AWS Networking Architectures - SRV323 - Chicago AWS Summit
Plan Advanced AWS Networking Architectures - SRV323 - Chicago AWS Summit
 
Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018
Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018
Kubernetes Networking in Amazon EKS (CON412) - AWS re:Invent 2018
 
Networking @Scale'19 - Getting a Taste of Your Network - Sergey Fedorov
Networking @Scale'19 - Getting a Taste of Your Network - Sergey FedorovNetworking @Scale'19 - Getting a Taste of Your Network - Sergey Fedorov
Networking @Scale'19 - Getting a Taste of Your Network - Sergey Fedorov
 
VPC and DX PoP @ HKG
VPC and DX PoP @ HKGVPC and DX PoP @ HKG
VPC and DX PoP @ HKG
 
Moving Enterprise Windows Workloads to AWS
Moving Enterprise Windows Workloads to AWSMoving Enterprise Windows Workloads to AWS
Moving Enterprise Windows Workloads to AWS
 
Cloud Native Lou - Networking
Cloud Native Lou - NetworkingCloud Native Lou - Networking
Cloud Native Lou - Networking
 
From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018
From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018
From One to Many: Evolving VPC Design (ARC309-R1) - AWS re:Invent 2018
 
AWS VPC Fundamentals- Webinar
AWS VPC Fundamentals- WebinarAWS VPC Fundamentals- Webinar
AWS VPC Fundamentals- Webinar
 
AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)
AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)
AWS re:Invent 2016: Deep Dive: AWS Direct Connect and VPNs (NET402)
 
Moving Enterprise Windows Workloads to AWS – Peter Stanski
Moving Enterprise Windows Workloads to AWS – Peter StanskiMoving Enterprise Windows Workloads to AWS – Peter Stanski
Moving Enterprise Windows Workloads to AWS – Peter Stanski
 
DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...
DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...
DevNetOps: Automating large-scale hybrid cloud architectures - AWS Summit Cap...
 

Mehr von Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 

Mehr von Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Another Day in the Life of a Cloud Network Engineer at Netflix (NET312) - AWS re:Invent 2018