SlideShare a Scribd company logo
A S Y N C H R O N O U S D ATA P R O C E S S I N G
Andrea Giuliano
@bit_shark
B u l g a r i a P H P
C O N F E R E N C ESeptember 27th, 2015
Andrea Giuliano
@bit_shark
$WHOAMI
COMMUNICATION
SYNCHRONOUS
COMMUNICATION
time
system A
system B
Request
Response
blocked
Pros Cons
• easy to reason about
• immediate feedback
• client can get stuck
• impractical in low latency env
SYNCHRONOUS
COMMUNICATION
ASYNCHRONOUS
COMMUNICATION
time
system A
system B
Request
• useful for long-running jobs
• systems decoupled
• scales well (event-based)
• additional system
requirements
ASYNCHRONOUS
COMMUNICATION
Pros Cons
INTEROPERABILITY
ADVANCED MESSAGE
QUEUING PROTOCOL
• message orientation
• queuing
• routing
• reliability
• security
P R O D U C E R C O N S U M E R
Produce Consumes
B R O K E R
ENTITIES INVOLVED
P R O D U C E R C O N S U M E R
Produce
Exchange
Consumes
B R O K E R
THE BROKER
P R O D U C E R C O N S U M E R
Produce
Exchange
Routes
Consumes
B R O K E R
THE BROKER
P R O D U C E R C O N S U M E R
Produce
Exchange Queue
Routes
Consumes
B R O K E R
THE BROKER
MESSAGING PATTERNS
{
"require": {
"videlalvaro/php-amqplib": "@stable",
...
}
}
$ composer.phar install
PRODUCER/CONSUMER
P R O D U C E R C O N S U M E R
Q U E U E
PRODUCER/CONSUMER
PRODUCING MESSAGES
PRODUCING MESSAGES
PRODUCING MESSAGES
PRODUCING MESSAGES
CONSUMING MESSAGES
CONSUMING MESSAGES
CONSUMING MESSAGES
SCALING UP
P R O D U C E R
C O N S U M E R
Q U E U E
C O N S U M E R
…
CONSUMERS CAN DIE
MESSAGE
ACKNOWLEDGEMENT
MESSAGE ACKS
switch on acks
send ack
QOS POLICY
C O N S U M E R
C O N S U M E R
ROUND ROBIN DISPATCHING
C O N S U M E R
C O N S U M E R
ROUND ROBIN DISPATCHING
C O N S U M E R
C O N S U M E R
ROUND ROBIN DISPATCHING
C O N S U M E R
C O N S U M E R
ROUND ROBIN DISPATCHING
!
FAIR DISPATCHING
C O N S U M E R
C O N S U M E R
FAIR DISPATCHING
C O N S U M E R
C O N S U M E R
FAIR DISPATCHING
C O N S U M E R
C O N S U M E R
FAIR DISPATCHING
C O N S U M E R
C O N S U M E R
ack
FAIR DISPATCHING
C O N S U M E R
C O N S U M E R
FAIR DISPATCHING
BROKER CAN DIE
DURABILITY
DURABILITY
declare the queue
persistent
PUBLISH/SUBSCRIBE
PUBLISH/SUBSCRIBE
P U B L I S H E R
S U B S C R I B E R
Q U E U E
S U B S C R I B E R S U B S C R I B E R
PUBLISH/SUBSCRIBE
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
tell me when a user is created
tell me when a user is created
tell me when a user is created
PUBLISH/SUBSCRIBE
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
U S E R
S E R V I C E
B R O K E R
username: agiuliano
password: ******
mail: ***@gmail.com
UserCreated
PUBLISH/SUBSCRIBE
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
UserCreated
UserCreated
UserCreated
PUBLISH/SUBSCRIBE
U S E R
S E R V I C E
B R O K E R
UserCreated
PUBLISH/SUBSCRIBE
M A I L
S E R V I C E
B R O K E R
tellmewhenauseriscreated
PUBLISH/SUBSCRIBEUserCreated
M A I L
S E R V I C E
B R O K E R
ROUTING
ROUTING
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[UserCreated, UserUpdated]
UserCreated
UserCreated
ROUTING
U S E R
S E R V I C E
B R O K E R
UserUpdated
routing key: updated
ROUTING
M A I L
S E R V I C E
B R O K E R
routing keys:
[created, updated]
ROUTING
M A I L
S E R V I C E
B R O K E R
routing keys:
[created, updated]
TOPIC
TOPIC
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
TOPIC
TOPIC
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
U S E R
S E R V I C E
<user. created>
TOPIC
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
U S E R
S E R V I C E
<user. created>
TOPIC
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
U S E R
S E R V I C E
<user. updated>
TOPIC
M A I L
S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
U S E R
S E R V I C E
<user. updated>
TOPIC
M A I L S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
S T O R E
S E R V I C E
<item.purchased>
TOPIC
M A I L S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
S T O R E
S E R V I C E
<item.purchased>
TOPIC
M A I L S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
S T O R E
S E R V I C E
<item.created>
TOPIC
M A I L S E R V I C E
A U T H
S E R V I C E
C O U P O N
S E R V I C E
B R O K E R
[user. *]
[user. created]
[user. created, *.purchased]
S T O R E
S E R V I C E
<item.created>
SUMMARY
PERFORMANCE
DECOUPLED SYSTEM
INTEROPERABILITY
SCALABILITY
joind.in/14878
Please rate the talk
joind.in/14878
CREDITS
• www.flickr.com/photos/rayofsun/9401226342
• www.flickr.com/photos/kalexanderson/6231391820
• www.flickr.com/photos/dhammza/2891991931
• www.flickr.com/photos/kevlewis/15372562472
• www.flickr.com/photos/hohumhobo/6349729535
• www.flickr.com/photos/107346206
• www.flickr.com/photos/berlin_steve/8414515260
• www.flickr.com/photos/s3a/4816966416
• www.flickr.com/photos/thatguyfromcchs08/2300190277
• www.flickr.com/photos/toniblay/52445415
• www.flickr.com/photos/bobsfever/8226802321
• www.flickr.com/photos/activars/6590201161
• www.flickr.com/photos/michaeljzealot/6485009571

More Related Content

Similar to Asynchronous data processing

Fast api
Fast apiFast api
Fast api
Simone Di Maulo
 
Combine workshops to boost business understanding.pdf
Combine workshops to boost business understanding.pdfCombine workshops to boost business understanding.pdf
Combine workshops to boost business understanding.pdf
Bruno Boucard
 
TUGASAN 3 - PSVK1143.pdf
TUGASAN 3 - PSVK1143.pdfTUGASAN 3 - PSVK1143.pdf
TUGASAN 3 - PSVK1143.pdf
KathleenGrace13
 
Configuración del directorio activo
Configuración del directorio activoConfiguración del directorio activo
Configuración del directorio activo
Yadira18
 
Meteor - not just for rockstars
Meteor - not just for rockstarsMeteor - not just for rockstars
Meteor - not just for rockstars
Stephan Hochhaus
 
Santander Presentation - Global Digital Innovation
Santander Presentation - Global Digital InnovationSantander Presentation - Global Digital Innovation
Santander Presentation - Global Digital Innovation
Lisa Cheng
 
UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...
UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...
UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...
Michael Ong
 
Product Ideation Process
Product Ideation ProcessProduct Ideation Process
Product Ideation Process
Prabukarthik R
 
AWS SeMINAR SERIES 2015 Sydney
AWS SeMINAR SERIES 2015 SydneyAWS SeMINAR SERIES 2015 Sydney
AWS SeMINAR SERIES 2015 Sydney
Amazon Web Services
 
AWS Seminar Series 2015 Melbourne
AWS Seminar Series 2015 MelbourneAWS Seminar Series 2015 Melbourne
AWS Seminar Series 2015 Melbourne
Amazon Web Services
 
The Angular road from 1.x to 2.0
The Angular road from 1.x to 2.0The Angular road from 1.x to 2.0
The Angular road from 1.x to 2.0
Vassilis Pitsounis
 
Intro to Microinteractions: Foundation of Details that Delight
Intro to Microinteractions: Foundation of Details that DelightIntro to Microinteractions: Foundation of Details that Delight
Intro to Microinteractions: Foundation of Details that Delight
Purple, Rock, Scissors
 
GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015
GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015
GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015
Toan Bach Quang Bao
 
Introduction to Information Technology 2
Introduction to Information Technology 2Introduction to Information Technology 2
Introduction to Information Technology 2
dmeekis
 
Auckland AWS Seminar Series
Auckland AWS Seminar SeriesAuckland AWS Seminar Series
Auckland AWS Seminar Series
Amazon Web Services
 
CIA For WordPress Developers
CIA For WordPress DevelopersCIA For WordPress Developers
CIA For WordPress Developers
David Brumbaugh
 
Google Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różnice
Google Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różniceGoogle Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różnice
Google Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różnice
Artur Skowroński
 
Lesson 1 WHAT IS ICT?
Lesson 1   WHAT IS ICT?Lesson 1   WHAT IS ICT?
Lesson 1 WHAT IS ICT?
LeahAmor1
 
AWS Seminar Series 2015 Brisbane
AWS Seminar Series 2015 BrisbaneAWS Seminar Series 2015 Brisbane
AWS Seminar Series 2015 Brisbane
Amazon Web Services
 
AWS SEMINAR SERIES 2015 Perth
AWS SEMINAR SERIES 2015 PerthAWS SEMINAR SERIES 2015 Perth
AWS SEMINAR SERIES 2015 Perth
Amazon Web Services
 

Similar to Asynchronous data processing (20)

Fast api
Fast apiFast api
Fast api
 
Combine workshops to boost business understanding.pdf
Combine workshops to boost business understanding.pdfCombine workshops to boost business understanding.pdf
Combine workshops to boost business understanding.pdf
 
TUGASAN 3 - PSVK1143.pdf
TUGASAN 3 - PSVK1143.pdfTUGASAN 3 - PSVK1143.pdf
TUGASAN 3 - PSVK1143.pdf
 
Configuración del directorio activo
Configuración del directorio activoConfiguración del directorio activo
Configuración del directorio activo
 
Meteor - not just for rockstars
Meteor - not just for rockstarsMeteor - not just for rockstars
Meteor - not just for rockstars
 
Santander Presentation - Global Digital Innovation
Santander Presentation - Global Digital InnovationSantander Presentation - Global Digital Innovation
Santander Presentation - Global Digital Innovation
 
UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...
UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...
UXSG Office Visit #3 for Singapore Polytechnic S.E.E.D Student Interest Group...
 
Product Ideation Process
Product Ideation ProcessProduct Ideation Process
Product Ideation Process
 
AWS SeMINAR SERIES 2015 Sydney
AWS SeMINAR SERIES 2015 SydneyAWS SeMINAR SERIES 2015 Sydney
AWS SeMINAR SERIES 2015 Sydney
 
AWS Seminar Series 2015 Melbourne
AWS Seminar Series 2015 MelbourneAWS Seminar Series 2015 Melbourne
AWS Seminar Series 2015 Melbourne
 
The Angular road from 1.x to 2.0
The Angular road from 1.x to 2.0The Angular road from 1.x to 2.0
The Angular road from 1.x to 2.0
 
Intro to Microinteractions: Foundation of Details that Delight
Intro to Microinteractions: Foundation of Details that DelightIntro to Microinteractions: Foundation of Details that Delight
Intro to Microinteractions: Foundation of Details that Delight
 
GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015
GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015
GENSummit - WEARABLE NEWS BEYOND THE GADGETS 2015
 
Introduction to Information Technology 2
Introduction to Information Technology 2Introduction to Information Technology 2
Introduction to Information Technology 2
 
Auckland AWS Seminar Series
Auckland AWS Seminar SeriesAuckland AWS Seminar Series
Auckland AWS Seminar Series
 
CIA For WordPress Developers
CIA For WordPress DevelopersCIA For WordPress Developers
CIA For WordPress Developers
 
Google Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różnice
Google Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różniceGoogle Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różnice
Google Assistant & Alexa - Asystenci głosowi: możliwości, podobieństwa, różnice
 
Lesson 1 WHAT IS ICT?
Lesson 1   WHAT IS ICT?Lesson 1   WHAT IS ICT?
Lesson 1 WHAT IS ICT?
 
AWS Seminar Series 2015 Brisbane
AWS Seminar Series 2015 BrisbaneAWS Seminar Series 2015 Brisbane
AWS Seminar Series 2015 Brisbane
 
AWS SEMINAR SERIES 2015 Perth
AWS SEMINAR SERIES 2015 PerthAWS SEMINAR SERIES 2015 Perth
AWS SEMINAR SERIES 2015 Perth
 

Recently uploaded

Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
David Brossard
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
Chart Kalyan
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
Postman
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
Zilliz
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
saastr
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
Federico Razzoli
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
DianaGray10
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 

Recently uploaded (20)

Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 

Asynchronous data processing