SlideShare une entreprise Scribd logo
1  sur  17
Télécharger pour lire hors ligne
 
 
 
rent Session 
 
Presented by: 
Jason  auen 
 
 
Brought to you by: 
 
 
340 Corporate Way, Suite   Orange Park, FL 32073 
888‐2
T8 
Concur
4/8/2014   
12:45 PM 
 
 
 
 
“Become a Big Data Quality Hero” 
 
 
R
LexisNexis 
 
 
 
 
 
 
300,
68‐8770 ∙ 904‐278‐0524 ∙ sqeinfo@sqe.com ∙ www.sqe.com 
Jason Rauen
LexisNexis
 
Jason Rauen is a senior quality test analyst at Georgia-based LexisNexis Risk
Solutions. With more than fifteen years of experience, Jason has led the data testing
team in big data from its inception. He has presented big data scripting techniques at
HPCC Systems national Data Summit. His background includes working at companies
including Microsoft, AT&T, and LexisNexis, and instructing at Intel, Boeing,
Executrain, and the Department of the Navy. Jason has transitioned through various
aspects of technology including technical sales, customer support, training, quality
control/quality assurance, and into management.
2/4/2014
1
“Quality isn’t measured by how many clients you 
obtain; it’s measured by how many clients you 
retain ”
Interesting Quotes……
retain.”
“QA isn’t the bottom of the totem pole; it’s the dirt 
holding it up.”
1
Become a Big Data Quality Hero
A look inside QA for Big Data
Presented by 01001010 01100001 01110011 01101111 01101110 00100000 
01010010 01100001 01110101 01100101 01101110 (Jason Rauen)
2/4/2014
2
Overview
• Architecture and why you need to know
– HPCC Systems/Hadoop
– Know Your Data/Environment
• Why Test Big Data and How it’s Different
– Issues
– Benefits
• Strategies and Concepts
– What to look for
– Sample Gathering (AUB) 
– Stats
– Profiling 
3
Architecture and why you need to know
Data Warehouse Architecture
Source Files
EXTRACT 
TRANSFORM 
LOAD
Staging
(Data 
Cleansing)
4
DATA
WAREHOUSE
2/4/2014
3
Architecture and why you need to know
Data Fabrication Engines
• HDFS Hadoop and HPCC THOR 
• Made of several nodes• Made of several nodes
• Where the ETL happens
• Where the Keys are made
Data Delivery Engines
• HPCC ROXIE, HBASE, etc…
• Keys moved to and referenced here
• Queries reside
5
Architecture and why you need to know
6
2/4/2014
4
Architecture and why you need to know
HDFSHDFS
Hadoop Mapreduce
HBASE
7
Architecture and why you need to know
8
2/4/2014
5
Architecture and why you need to know
HDFS
Map Shuffle Reduce
9
Architecture and why you need to know
DISTRIBUTE/PROJECT/TRANSFORM Rollup
HPCC Systems
10
2/4/2014
6
Why Test Big Data and How it’s Different
Why Test Big Data:
• Traditional methods not adequate – Traditional sampling 
d i d i i b d hneeds improvement and is scenario based, not enough 
samples, human error, etc….
• Size of the data is huge, from different 
sources, and inconsistent 
• Tied into current environment
• Government regulatory compliancesg y p
• Auditing requirements 
• Company wide initiatives
• The business makes crucial decisions
based off of it
11
Why Test Big Data and How it’s Different
Want to keep your customers?
12
2/4/2014
7
Why Test Big Data and How it’s Different
• When? 
o Testing ‐ SDLC
o Routine Testingg
o Frequency ‐ Yearly/Monthly/Weekly/Daily/Hourly/On 
Demand
• What? Types Testing 
New Project – Source to Target (Transform)
Standard  ‐ Production Validation 
Emergency releases
• How?  
o Using  what you have available
o Freebies – Profiling tools, etc… 
13
Why Test Big Data and How it’s Different
Issues:
• Lack of control
Timing of buildsTiming of builds
Samples and location of samples
• 3rd Party Apps
Lack of licenses, Costs, Training, and existing 
knowledge
• Extra hardware• Extra hardware
• Upgrades
14
2/4/2014
8
Why Test Big Data and How it’s Different
Benefits:
• Cost savings
• Better Coverage
No Samples
Increased Sampling
Focused Samples
• Faster (Time is $)
• Quicker to Diagnosing issues
• Better Data Integrity
• Collaboration with other groups
15
Strategies and Concepts
• What to look for……
Brand New, Incomplete, or Missing Builds (Data Cops)
Data progression  Today/Yesterday  FatherKey/Grandfatherkeyp g y/ y y/ y
Count of Deltas in release/deploy
Keys updated
Missing keys/New keys
Field Validations – mandatory fields blank, consistency, etc…
Key Layout issues
Corruption unprintable or invalid characters
Duplicate records of new and existing records
Data Fabrication Engine to Data delivery Engine deploys/sync
Queries with new data
16
2/4/2014
9
Strategies and Concepts
JOIN
• Sample gathering
• New Key for testing
• Deployment Validation
‐ Data Fabrication
• Deployment Validation
‐ Data Delivery
And get a free cookie…
17
Strategies and Concepts
AUB for JOIN
A = Left key (New)
B = Right key (Old)B   Right key (Old)
Types of JOINS
Inner Join Left Outer Join Right Outer Join
Full Outer Join Minus or Left Only
18
2/4/2014
10
Strategies and Concepts
Statistics: What you try to remember with this swimming 
behind you.y
19
Strategies and Concepts
Statistics:
• On data sets and keys
‐ Gives you a high level look at the release             
‐ Ranges
‐ You’ll start to notice a trend line
• On Releases
‐ Done over time you’ll see the trend of new data sets and keys
‐ Done over time you’ll see the trend of changed or modified  
data sets and keys 
20
2/4/2014
11
Strategies and Concepts
350
400
RELEASE NUMBERS
AVERAGE 175.4
150
200
250
300
CEILING 210.6
FLOOR 135.1
0
50
100
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
21
Strategies and Concepts
Data Profiling:
• Data Profiling Summary Report
• Data Profiling Field Detail Report
http://www.hpccsystems.com/demos/data‐
profiling‐demo
• Data Profiling Field Combination Report
22
2/4/2014
12
Strategies and Concepts
Data Profiling Summary Report
23
Strategies and Concepts
Data Profiling Field Detail Report
24
2/4/2014
13
Strategies and Concepts
Data Profiling Field Combination Report
25
Strategies and Concepts
SQL
SELECT * FROM Products;
Pig
DUMP Products;
ECL
Products;
SELECT * FROM Products 
WHERE productcode = 
‘R2D2C3PO’;
Products= FILTER
Products BY productcode 
= ‘R2D2C3PO’;
DUMP Products;
Products= GROUP
Products(productcode = 
‘R2D2C3PO’);
COUNT(Products);
SELECT COUNT (*) FROM 
Products;
Products= GROUP 
Products ALL; 
Products =FOREACH
Products GENERATE 
COUNT (Products);
DUMP Products;
COUNT(Products);
26
2/4/2014
14
Strategies and Concepts
SQL
SELECT * FROM Products 
ORDER BY productcode;
Pig
Products= ORDER
Products BY productcode;
ECL
SORT(
Products,productcode);ORDER BY productcode;
SELECT * FROM Products FULL 
OUTER JOIN OtherProducts 
ON Products.col1 = 
OtherProducts.col1;
DUMP Products;
Products= JOIN Products
BY col1 FULL OUTER, 
OtherProducts BY col1; 
DUMP Products;
JOIN(Products,OtherPro
ducts, LEFT.col1 = 
RIGHT.col1,FULL
OUTER);
27
Summary
Why Test Big Data and How it’s 
Different
Architecture and why you need to know
Strategies and Concepts
28
2/4/2014
15
Questions?
29
Contact / Useful links
www.linkedin/in/jasonrauen
• HPCC Systems/ECL Links:
http://hpccsystems.com
http://hpccsystems.com/demos
• Hadoop/Pig Latin Links:
http://pig apache orghttp://pig.apache.org
http://hadoop.apache.org
• SQL Links:
http://sql.org/
http://msdn.microsoft.com/en‐US/sqlserver/default.aspx
30

Contenu connexe

Similaire à Become a Big Data Quality Hero

Carl Howard Resume 2010
Carl Howard Resume 2010Carl Howard Resume 2010
Carl Howard Resume 2010Carl Howard
 
New res 10 1-10
New res 10 1-10New res 10 1-10
New res 10 1-10Dave
 
Net Serv Applications
Net Serv ApplicationsNet Serv Applications
Net Serv Applicationssthicks14
 
Cleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VACleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VAClearedJobs.Net
 
Cleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VACleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VAClearedJobs.Net
 
Cleared Career Fair Handbook | August 3
Cleared Career Fair Handbook | August 3Cleared Career Fair Handbook | August 3
Cleared Career Fair Handbook | August 3ClearedJobs.Net
 
AnnaVysotskayaCybersecResume2
AnnaVysotskayaCybersecResume2AnnaVysotskayaCybersecResume2
AnnaVysotskayaCybersecResume2Anna Vysotskaya
 
CI or FS Poly Cleared Job Fair Handbook | November 2
CI or FS Poly Cleared Job Fair Handbook | November 2CI or FS Poly Cleared Job Fair Handbook | November 2
CI or FS Poly Cleared Job Fair Handbook | November 2ClearedJobs.Net
 
Current Cover Letter & Resume
Current Cover Letter & ResumeCurrent Cover Letter & Resume
Current Cover Letter & Resumegueste914f1
 
JVervoren updated Resume
JVervoren updated ResumeJVervoren updated Resume
JVervoren updated ResumeJosh Vervoren
 
Cleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VA
Cleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VACleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VA
Cleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VAClearedJobs.Net
 
Cleared Job Fair Handbook | April 7
Cleared Job Fair Handbook | April 7Cleared Job Fair Handbook | April 7
Cleared Job Fair Handbook | April 7ClearedJobs.Net
 
BrianBrink-Resume-2016
BrianBrink-Resume-2016BrianBrink-Resume-2016
BrianBrink-Resume-2016Brian Brink
 

Similaire à Become a Big Data Quality Hero (20)

Carl Howard Resume 2010
Carl Howard Resume 2010Carl Howard Resume 2010
Carl Howard Resume 2010
 
New res 10 1-10
New res 10 1-10New res 10 1-10
New res 10 1-10
 
Net Serv Applications
Net Serv ApplicationsNet Serv Applications
Net Serv Applications
 
Cleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VACleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 9, 2014, Tysons Corner, VA
 
Ann Marie Cody Resume
Ann Marie Cody ResumeAnn Marie Cody Resume
Ann Marie Cody Resume
 
Resume 1216
Resume 1216Resume 1216
Resume 1216
 
Cleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VACleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VA
Cleared Job Fair Job Seeker Handbook Oct 5, 2017, Tysons Corner, VA
 
Cleared Career Fair Handbook | August 3
Cleared Career Fair Handbook | August 3Cleared Career Fair Handbook | August 3
Cleared Career Fair Handbook | August 3
 
AnnaVysotskayaCybersecResume2
AnnaVysotskayaCybersecResume2AnnaVysotskayaCybersecResume2
AnnaVysotskayaCybersecResume2
 
NorlyQuiatchon
NorlyQuiatchonNorlyQuiatchon
NorlyQuiatchon
 
Llewellyn Link Resume
Llewellyn Link ResumeLlewellyn Link Resume
Llewellyn Link Resume
 
CI or FS Poly Cleared Job Fair Handbook | November 2
CI or FS Poly Cleared Job Fair Handbook | November 2CI or FS Poly Cleared Job Fair Handbook | November 2
CI or FS Poly Cleared Job Fair Handbook | November 2
 
Current Cover Letter & Resume
Current Cover Letter & ResumeCurrent Cover Letter & Resume
Current Cover Letter & Resume
 
JVervoren updated Resume
JVervoren updated ResumeJVervoren updated Resume
JVervoren updated Resume
 
Cheyenne Johnson - 2015
Cheyenne Johnson - 2015Cheyenne Johnson - 2015
Cheyenne Johnson - 2015
 
Cleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VA
Cleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VACleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VA
Cleared Job Fair Job Seeker Handbook Nov 15, 2012, Crystal City, VA
 
Baughman_Resume
Baughman_ResumeBaughman_Resume
Baughman_Resume
 
Cleared Job Fair Handbook | April 7
Cleared Job Fair Handbook | April 7Cleared Job Fair Handbook | April 7
Cleared Job Fair Handbook | April 7
 
BrianBrink-Resume-2016
BrianBrink-Resume-2016BrianBrink-Resume-2016
BrianBrink-Resume-2016
 
Resume
ResumeResume
Resume
 

Plus de TechWell

Failing and Recovering
Failing and RecoveringFailing and Recovering
Failing and RecoveringTechWell
 
Instill a DevOps Testing Culture in Your Team and Organization
Instill a DevOps Testing Culture in Your Team and Organization Instill a DevOps Testing Culture in Your Team and Organization
Instill a DevOps Testing Culture in Your Team and Organization TechWell
 
Test Design for Fully Automated Build Architecture
Test Design for Fully Automated Build ArchitectureTest Design for Fully Automated Build Architecture
Test Design for Fully Automated Build ArchitectureTechWell
 
System-Level Test Automation: Ensuring a Good Start
System-Level Test Automation: Ensuring a Good StartSystem-Level Test Automation: Ensuring a Good Start
System-Level Test Automation: Ensuring a Good StartTechWell
 
Build Your Mobile App Quality and Test Strategy
Build Your Mobile App Quality and Test StrategyBuild Your Mobile App Quality and Test Strategy
Build Your Mobile App Quality and Test StrategyTechWell
 
Testing Transformation: The Art and Science for Success
Testing Transformation: The Art and Science for SuccessTesting Transformation: The Art and Science for Success
Testing Transformation: The Art and Science for SuccessTechWell
 
Implement BDD with Cucumber and SpecFlow
Implement BDD with Cucumber and SpecFlowImplement BDD with Cucumber and SpecFlow
Implement BDD with Cucumber and SpecFlowTechWell
 
Develop WebDriver Automated Tests—and Keep Your Sanity
Develop WebDriver Automated Tests—and Keep Your SanityDevelop WebDriver Automated Tests—and Keep Your Sanity
Develop WebDriver Automated Tests—and Keep Your SanityTechWell
 
Eliminate Cloud Waste with a Holistic DevOps Strategy
Eliminate Cloud Waste with a Holistic DevOps StrategyEliminate Cloud Waste with a Holistic DevOps Strategy
Eliminate Cloud Waste with a Holistic DevOps StrategyTechWell
 
Transform Test Organizations for the New World of DevOps
Transform Test Organizations for the New World of DevOpsTransform Test Organizations for the New World of DevOps
Transform Test Organizations for the New World of DevOpsTechWell
 
The Fourth Constraint in Project Delivery—Leadership
The Fourth Constraint in Project Delivery—LeadershipThe Fourth Constraint in Project Delivery—Leadership
The Fourth Constraint in Project Delivery—LeadershipTechWell
 
Resolve the Contradiction of Specialists within Agile Teams
Resolve the Contradiction of Specialists within Agile TeamsResolve the Contradiction of Specialists within Agile Teams
Resolve the Contradiction of Specialists within Agile TeamsTechWell
 
Pin the Tail on the Metric: A Field-Tested Agile Game
Pin the Tail on the Metric: A Field-Tested Agile GamePin the Tail on the Metric: A Field-Tested Agile Game
Pin the Tail on the Metric: A Field-Tested Agile GameTechWell
 
Agile Performance Holarchy (APH)—A Model for Scaling Agile Teams
Agile Performance Holarchy (APH)—A Model for Scaling Agile TeamsAgile Performance Holarchy (APH)—A Model for Scaling Agile Teams
Agile Performance Holarchy (APH)—A Model for Scaling Agile TeamsTechWell
 
A Business-First Approach to DevOps Implementation
A Business-First Approach to DevOps ImplementationA Business-First Approach to DevOps Implementation
A Business-First Approach to DevOps ImplementationTechWell
 
Databases in a Continuous Integration/Delivery Process
Databases in a Continuous Integration/Delivery ProcessDatabases in a Continuous Integration/Delivery Process
Databases in a Continuous Integration/Delivery ProcessTechWell
 
Mobile Testing: What—and What Not—to Automate
Mobile Testing: What—and What Not—to AutomateMobile Testing: What—and What Not—to Automate
Mobile Testing: What—and What Not—to AutomateTechWell
 
Cultural Intelligence: A Key Skill for Success
Cultural Intelligence: A Key Skill for SuccessCultural Intelligence: A Key Skill for Success
Cultural Intelligence: A Key Skill for SuccessTechWell
 
Turn the Lights On: A Power Utility Company's Agile Transformation
Turn the Lights On: A Power Utility Company's Agile TransformationTurn the Lights On: A Power Utility Company's Agile Transformation
Turn the Lights On: A Power Utility Company's Agile TransformationTechWell
 

Plus de TechWell (20)

Failing and Recovering
Failing and RecoveringFailing and Recovering
Failing and Recovering
 
Instill a DevOps Testing Culture in Your Team and Organization
Instill a DevOps Testing Culture in Your Team and Organization Instill a DevOps Testing Culture in Your Team and Organization
Instill a DevOps Testing Culture in Your Team and Organization
 
Test Design for Fully Automated Build Architecture
Test Design for Fully Automated Build ArchitectureTest Design for Fully Automated Build Architecture
Test Design for Fully Automated Build Architecture
 
System-Level Test Automation: Ensuring a Good Start
System-Level Test Automation: Ensuring a Good StartSystem-Level Test Automation: Ensuring a Good Start
System-Level Test Automation: Ensuring a Good Start
 
Build Your Mobile App Quality and Test Strategy
Build Your Mobile App Quality and Test StrategyBuild Your Mobile App Quality and Test Strategy
Build Your Mobile App Quality and Test Strategy
 
Testing Transformation: The Art and Science for Success
Testing Transformation: The Art and Science for SuccessTesting Transformation: The Art and Science for Success
Testing Transformation: The Art and Science for Success
 
Implement BDD with Cucumber and SpecFlow
Implement BDD with Cucumber and SpecFlowImplement BDD with Cucumber and SpecFlow
Implement BDD with Cucumber and SpecFlow
 
Develop WebDriver Automated Tests—and Keep Your Sanity
Develop WebDriver Automated Tests—and Keep Your SanityDevelop WebDriver Automated Tests—and Keep Your Sanity
Develop WebDriver Automated Tests—and Keep Your Sanity
 
Ma 15
Ma 15Ma 15
Ma 15
 
Eliminate Cloud Waste with a Holistic DevOps Strategy
Eliminate Cloud Waste with a Holistic DevOps StrategyEliminate Cloud Waste with a Holistic DevOps Strategy
Eliminate Cloud Waste with a Holistic DevOps Strategy
 
Transform Test Organizations for the New World of DevOps
Transform Test Organizations for the New World of DevOpsTransform Test Organizations for the New World of DevOps
Transform Test Organizations for the New World of DevOps
 
The Fourth Constraint in Project Delivery—Leadership
The Fourth Constraint in Project Delivery—LeadershipThe Fourth Constraint in Project Delivery—Leadership
The Fourth Constraint in Project Delivery—Leadership
 
Resolve the Contradiction of Specialists within Agile Teams
Resolve the Contradiction of Specialists within Agile TeamsResolve the Contradiction of Specialists within Agile Teams
Resolve the Contradiction of Specialists within Agile Teams
 
Pin the Tail on the Metric: A Field-Tested Agile Game
Pin the Tail on the Metric: A Field-Tested Agile GamePin the Tail on the Metric: A Field-Tested Agile Game
Pin the Tail on the Metric: A Field-Tested Agile Game
 
Agile Performance Holarchy (APH)—A Model for Scaling Agile Teams
Agile Performance Holarchy (APH)—A Model for Scaling Agile TeamsAgile Performance Holarchy (APH)—A Model for Scaling Agile Teams
Agile Performance Holarchy (APH)—A Model for Scaling Agile Teams
 
A Business-First Approach to DevOps Implementation
A Business-First Approach to DevOps ImplementationA Business-First Approach to DevOps Implementation
A Business-First Approach to DevOps Implementation
 
Databases in a Continuous Integration/Delivery Process
Databases in a Continuous Integration/Delivery ProcessDatabases in a Continuous Integration/Delivery Process
Databases in a Continuous Integration/Delivery Process
 
Mobile Testing: What—and What Not—to Automate
Mobile Testing: What—and What Not—to AutomateMobile Testing: What—and What Not—to Automate
Mobile Testing: What—and What Not—to Automate
 
Cultural Intelligence: A Key Skill for Success
Cultural Intelligence: A Key Skill for SuccessCultural Intelligence: A Key Skill for Success
Cultural Intelligence: A Key Skill for Success
 
Turn the Lights On: A Power Utility Company's Agile Transformation
Turn the Lights On: A Power Utility Company's Agile TransformationTurn the Lights On: A Power Utility Company's Agile Transformation
Turn the Lights On: A Power Utility Company's Agile Transformation
 

Dernier

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 

Dernier (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

Become a Big Data Quality Hero