SlideShare a Scribd company logo
April 22
IoT with InfluxDB and Azure ML
Storing and Processing
Time Series Data for IoT
About me
• Project Manager @
o 15 years professional experience
o .NET Web Development MCPD
• External Expert Horizon 2020
• External Expert Eurostars & IFD
• Business Interests
o Web Development, SOA, Integration
o Security & Performance Optimization
o IoT, Computer Intelligence
• Contact
o ivelin.andreev@icb.bg
o www.linkedin.com/in/ivelin
o www.slideshare.net/ivoandreev
Agenda
Time Series
o Why Time Series
o InfluxDB vs Competitors
o Key Concepts
o Demo
Machine Learning
o Azure ML vs Competitors
o Choosing the right algorithm
o Algorithm Performance
o Demo
IoT Data
• IoT (buzzword of the year)
• 30 billion “things” by 2020 (Forbes)
• Top IoT Industries
• Manufacturing
• Healthcare
• What are the benefits from IoT?
• The discussion has shifted
• How to make IoT work?
• How to gain insight on hidden relations?
• How to get actionable results?
Machine Learning
Azure ML
• Part of Cortana Intelligence Suite
• How SSAS Compares?
o Similar algorithms
o No web based environment (ML Studio)
o Limited to RDBMS for mining models
o Limited client applications (no web service)
Main Players
Azure ML BigML Amazon
ML
Google
Prediction
IBM
Watson ML
Flexibility High High Low Low Low
Usability High Med High Low High
Training time Low Low High Med High
Accuracy (AUC) High High High Med High
Cloud/
On-premises
+/- +/+ +/- +/- +/-
Algorithms Classification
Regression
Clustering
Anomaly detect
Recommendations
Classification
Regression
Clustering
Anomaly
Recommend
Classification
Regression
Classification
Regression
Semantic mining
Hypothesis rank
Regression
Customizations Model parameters
R-script
Evaluation support
Own models
C#, R, Node.js
Few
parameters
1. Dataset
Azure ML Flow
2. Training Experiment
3. Predictive Experiment
4. Publish Web Service
5. Retrain Model
Supported Use Cases
Data Determine the Algorithm
• Linear Algorithms
o Classification - classes separated by straight line
o Support Vector Machine – wide gap instead of line
o Regression – linear relation between variables and label
• Non-Linear Algorithms
o Decision Trees and Jungles - divide space into regions
o Neural Networks – complex and irregular boundaries
• Special Algorithms
o Ordinal Regression – ranked values (i.e. race)
o Poisson - discrete distribution (i.e. count of events)
o Bayesian – normal distribution of errors (bell curve)
• ROC Curve
o TP Rate = True Positives / All Positives
o FP Rate = False Positives / All Negatives
• Example
• AUC (Area Under Curve)
o KPI for model performance
o 0.5 = Random prediction
o 1 = Perfect match
Model Performance (Binary)
TP Rate FP Rate 1-FP Rate
5 0.56 0.99 0.01
7 0.78 0.81 0.19
9 0.91 0.42 0.58
• Probability Threshold
o Cost of one error could be much higher that cost of other
o (i.e. Spam filter vs Machine failure)
• Accuracy
o For symmetric 50/50 data
• Precision
o (i.e. 1000 devices, 6 fails, 8 predicted, 5 true failures)
o Correct positives (i.e. 5/8 = 0.625, FP are expensive)
• Recall
o Correctly predicted positives (i.e. 5/6=0.83, FN are expensive)
• F1
o Balanced cost of Precision/Recall
Threshold Selection (Binary)
Model Performance (Regression)
• Coefficient of Determination (R2)
o Single numeric KPI – how well data fits model
o R2>0.6 – good, R2>0.8 – very good R2=1 – perfect
• Mean Absolute Error / Root Mean Squared Error
o Deviation of the estimates from the observed values
o Compare model errors measure in the SAME units
• Relative Absolute Error / Relative Squared Error
o % deviation from real value
o Compare model errors measure in the DIFFERENT units
Azure ML
DEMO
This is TS Data
And this is NOT
Time Series for Sensor Data
• TS Data
o Sequence of data from the same source over time
o Regular and Irregular TS Data
o Entries typically do not change
• Time Series DB
o Optimized for TS Data
• Process Historian – more than TS DB
o Interfaces to read data from multiple data sources
o Render graphics for meaningful points
o Statistical process control
o Redundancy and high availability
When TS overperform RDBMS
• Target scenarios
o High I/O rate
o Number of tags
o Volume of data
o Aggregation of irregular data
o Compression & De-duplication
• Requires a learning
o Do you expect that many data?
o Do you need to plot?
o Do you need to aggregate?
• Open-source distributed TS database
• Key Features
o Easy setup, no external dependencies, implemented in Go
o Comprehensive documentation
o Scalable, highly efficient
o REST API (JSON)
o Supports .NET
o SQL-like syntax
o On-premise and cloud
• Top ranked TS DB
InfluxDB vs NonSQL for TS Data
• InfluxDB vs MongoDB
o WRITE: 27x greater
o QUERY: Equal performance
o STORAGE: 84x less
• InfluxDB vs Elasticsearch
o WRITE: 8x greater
o QUERY: 3.5x – 7.5x faster
o STORAGE: 4x less
• InfluxDB vs OpenTSDB
o WRITE: 5x greater
o QUERY: 4x faster
o STORAGE: 16.5x less
• InfluxDB vs Cassandra
o WRITE: 4.5x greater
o QUERY: up to 168x faster
o STORAGE: 10.8x less
• InfluxDB vs DocumentDB
o More popular
o Cloud and on-premises
o No external dependencies
o Aggregations
Scalability
• Single node or cluster
o Single node is open source and free
• Recommendations
• Query complexity (Moderate)
o Multiple functions, few regular expressions
o Complex GROUP BY clause or sampling over weeks
o Runtime 500ms – 5sec
Load Resources Writes/Sec
Moderate
Queries/Sec.
Unique
Series
Low Cores: 2-4; RAM: 2-4 GB 0 - 5K 0 - 5 0 – 100K
Moderate Cores: 4-6; RAM: 8-32 GB 5K - 250K 5 - 25 100K - 1M
High Cores: 8+; RAM: 32+ 250K – 750K 25 - 100 1M - 10M
Key Concepts
Term Description
Measurement Container
Point Single record for timestamp
Field Set Required; Not-indexed
Field key Define what is measured
Field value Actual measured value
(string, bool, int64, float64)
Tag Set Metadata about the point
Optional; Indexed; Key-value;
Tag key Unique per measurement
Tag value Unique per tag key
Series Data points with common
tag set
• Aggregation functions
• Retention policies
• Downsampling
• Continuous queries
Functions
Aggregations Selectors Transformations Predictors
COUNT() BOTTOM() CEILING() HOLT_WINTERS()
DISTINCT() FIRST() CUMULATIVE_SUM()
INTEGRAL() LAST() DERIVATIVE()
MEAN() MAX() DIFFERENCE()
MEDIAN() MIN() ELAPSED()
MODE() PERCENTILE() FLOOR()
SPREAD() SAMPLE() HISTOGRAM()
STDDEV() TOP() MOVING_AVERAGE()
SUM() NON_NEGATIVE_DERIVATIVE()
End-End Solution
InfluxDB & Grafana
DEMO
Takeaways
• Time Series
o Time-series for monitoring and sensor data
o InfluxData performance and design papers
o InfluxDB hardware sizing guide
o InfluxDB concepts
o InfluxDB schema
• Machine Learning
o Choosing the right algorithm (Infographic)
o Cortana Intelligence Gallery (3700 Sample Azure ML Projects)
o Evaluating model performance
o Azure ML documentation (full)
o Azure ML video guidelines
Thanks to our Sponsors:
Global Sponsor:
Platinum Sponsors:
Swag Sponsors: Media Partners:
With the support of:
Upcoming events
SQLSaturday #519 in may!
http://www.sqlsaturday.com/519/

More Related Content

PDF
Machine Learning with JavaScript
PDF
Machine learning for IoT - unpacking the blackbox
PDF
Prepare your data for machine learning
PDF
Azure Machine Learning and ML on Premises
PDF
The Data Science Process - Do we need it and how to apply?
PDF
Smart Web Apps with Azure and AI as a Service
PDF
Python Development in VS2019
PDF
The Machine Learning Workflow with Azure
Machine Learning with JavaScript
Machine learning for IoT - unpacking the blackbox
Prepare your data for machine learning
Azure Machine Learning and ML on Premises
The Data Science Process - Do we need it and how to apply?
Smart Web Apps with Azure and AI as a Service
Python Development in VS2019
The Machine Learning Workflow with Azure

What's hot (20)

PDF
Industrial IoT with Azure and Open Source
PPTX
Building Powerful and Intelligent Applications with Azure Machine Learning
PDF
Distributed processing of large graphs in python
PPTX
Automated Machine Learning
PDF
Introduction to Machine Learning with SciKit-Learn
PDF
Dato Keynote
PDF
Automatic machine learning (AutoML) 101
PPTX
Towards a Comprehensive Machine Learning Benchmark
PPTX
Ferruzza g automl deck
PDF
QCon Rio - Machine Learning for Everyone
PDF
Mining Big Data Streams with APACHE SAMOA
PPTX
李育杰/The Growth of a Data Scientist
PDF
Nikhil Garg, Engineering Manager, Quora at MLconf SF 2016
PPTX
Microsoft Introduction to Automated Machine Learning
PPTX
StackNet Meta-Modelling framework
PDF
Tensors Are All You Need: Faster Inference with Hummingbird
PPTX
Production machine learning_infrastructure
PDF
Data! Data! Data! I Can't Make Bricks Without Clay!
PDF
Ml infra at an early stage
PPTX
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...
Industrial IoT with Azure and Open Source
Building Powerful and Intelligent Applications with Azure Machine Learning
Distributed processing of large graphs in python
Automated Machine Learning
Introduction to Machine Learning with SciKit-Learn
Dato Keynote
Automatic machine learning (AutoML) 101
Towards a Comprehensive Machine Learning Benchmark
Ferruzza g automl deck
QCon Rio - Machine Learning for Everyone
Mining Big Data Streams with APACHE SAMOA
李育杰/The Growth of a Data Scientist
Nikhil Garg, Engineering Manager, Quora at MLconf SF 2016
Microsoft Introduction to Automated Machine Learning
StackNet Meta-Modelling framework
Tensors Are All You Need: Faster Inference with Hummingbird
Production machine learning_infrastructure
Data! Data! Data! I Can't Make Bricks Without Clay!
Ml infra at an early stage
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...
Ad

Similar to IoT with Azure Machine Learning and InfluxDB (20)

PDF
Time Series Databases for IoT (On-premises and Azure)
PDF
The Power of Auto ML and How Does it Work
PPTX
Data Stream Management
PDF
Everything We Learned About In-Memory Data Layout While Building VoltDB
PDF
Forecasting time series powerful and simple
PPTX
Service Architectures At Scale - QCon London 2015
PDF
Large Scale Architecture -- The Unreasonable Effectiveness of Simplicity
PDF
MongoDB: What, why, when
PDF
Search Accuracy Metrics and Predictive Analytics - A Big Data Use Case: Prese...
PDF
Introduction_to_dataassimilation
PPTX
Service Architectures at Scale
PDF
Predictive Maintenance - Predict the Unpredictable
PPTX
Azure CosmosDb - Where we are
PDF
How to create custom dashboards in Elastic Search / Kibana with Performance V...
PDF
SERENE 2014 School: Daniel varro serene2014_school
PDF
SERENE 2014 School: Incremental Model Queries over the Cloud
PPTX
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...
PDF
The state of SQL-on-Hadoop in the Cloud
PPTX
Deep dive time series anomaly detection with different Azure Data Services
PPTX
Using InfluxDB for Full Observability of a SaaS Platform by Aleksandr Tavgen,...
Time Series Databases for IoT (On-premises and Azure)
The Power of Auto ML and How Does it Work
Data Stream Management
Everything We Learned About In-Memory Data Layout While Building VoltDB
Forecasting time series powerful and simple
Service Architectures At Scale - QCon London 2015
Large Scale Architecture -- The Unreasonable Effectiveness of Simplicity
MongoDB: What, why, when
Search Accuracy Metrics and Predictive Analytics - A Big Data Use Case: Prese...
Introduction_to_dataassimilation
Service Architectures at Scale
Predictive Maintenance - Predict the Unpredictable
Azure CosmosDb - Where we are
How to create custom dashboards in Elastic Search / Kibana with Performance V...
SERENE 2014 School: Daniel varro serene2014_school
SERENE 2014 School: Incremental Model Queries over the Cloud
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...
The state of SQL-on-Hadoop in the Cloud
Deep dive time series anomaly detection with different Azure Data Services
Using InfluxDB for Full Observability of a SaaS Platform by Aleksandr Tavgen,...
Ad

More from Ivo Andreev (20)

PDF
Multi-Agent Era will Define the Future of Software
PDF
LLM-based Multi-Agent Systems to Replace Traditional Software
PDF
LLM Security - Smart to protect, but too smart to be protected
PDF
What are Phi Small Language Models Capable of
PDF
Autonomous Control AI Training from Data
PDF
Autonomous Systems for Optimization and Control
PDF
Cybersecurity and Generative AI - for Good and Bad vol.2
PDF
Architecting AI Solutions in Azure for Business
PDF
Cybersecurity Challenges with Generative AI - for Good and Bad
PDF
JS-Experts - Cybersecurity for Generative AI
PDF
How do OpenAI GPT Models Work - Misconceptions and Tips for Developers
PDF
OpenAI GPT in Depth - Questions and Misconceptions
PDF
Cutting Edge Computer Vision for Everyone
PDF
Collecting and Analysing Spaceborn Data
PDF
Collecting and Analysing Satellite Data with Azure Orbital
PDF
Language Studio and Custom Models
PDF
CosmosDB for IoT Scenarios
PDF
Constrained Optimization with Genetic Algorithms and Project Bonsai
PDF
Azure security guidelines for developers
PDF
Autonomous Machines with Project Bonsai
Multi-Agent Era will Define the Future of Software
LLM-based Multi-Agent Systems to Replace Traditional Software
LLM Security - Smart to protect, but too smart to be protected
What are Phi Small Language Models Capable of
Autonomous Control AI Training from Data
Autonomous Systems for Optimization and Control
Cybersecurity and Generative AI - for Good and Bad vol.2
Architecting AI Solutions in Azure for Business
Cybersecurity Challenges with Generative AI - for Good and Bad
JS-Experts - Cybersecurity for Generative AI
How do OpenAI GPT Models Work - Misconceptions and Tips for Developers
OpenAI GPT in Depth - Questions and Misconceptions
Cutting Edge Computer Vision for Everyone
Collecting and Analysing Spaceborn Data
Collecting and Analysing Satellite Data with Azure Orbital
Language Studio and Custom Models
CosmosDB for IoT Scenarios
Constrained Optimization with Genetic Algorithms and Project Bonsai
Azure security guidelines for developers
Autonomous Machines with Project Bonsai

Recently uploaded (20)

PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Electronic commerce courselecture one. Pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
cuic standard and advanced reporting.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Machine Learning_overview_presentation.pptx
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
A Presentation on Artificial Intelligence
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPT
Teaching material agriculture food technology
PPTX
Cloud computing and distributed systems.
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
Encapsulation_ Review paper, used for researhc scholars
Spectral efficient network and resource selection model in 5G networks
Electronic commerce courselecture one. Pdf
Chapter 3 Spatial Domain Image Processing.pdf
The AUB Centre for AI in Media Proposal.docx
cuic standard and advanced reporting.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Network Security Unit 5.pdf for BCA BBA.
A comparative analysis of optical character recognition models for extracting...
Mobile App Security Testing_ A Comprehensive Guide.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Machine Learning_overview_presentation.pptx
Programs and apps: productivity, graphics, security and other tools
The Rise and Fall of 3GPP – Time for a Sabbatical?
A Presentation on Artificial Intelligence
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Teaching material agriculture food technology
Cloud computing and distributed systems.
Digital-Transformation-Roadmap-for-Companies.pptx

IoT with Azure Machine Learning and InfluxDB

  • 1. April 22 IoT with InfluxDB and Azure ML Storing and Processing Time Series Data for IoT
  • 2. About me • Project Manager @ o 15 years professional experience o .NET Web Development MCPD • External Expert Horizon 2020 • External Expert Eurostars & IFD • Business Interests o Web Development, SOA, Integration o Security & Performance Optimization o IoT, Computer Intelligence • Contact o ivelin.andreev@icb.bg o www.linkedin.com/in/ivelin o www.slideshare.net/ivoandreev
  • 3. Agenda Time Series o Why Time Series o InfluxDB vs Competitors o Key Concepts o Demo Machine Learning o Azure ML vs Competitors o Choosing the right algorithm o Algorithm Performance o Demo
  • 4. IoT Data • IoT (buzzword of the year) • 30 billion “things” by 2020 (Forbes) • Top IoT Industries • Manufacturing • Healthcare • What are the benefits from IoT? • The discussion has shifted • How to make IoT work? • How to gain insight on hidden relations? • How to get actionable results?
  • 6. Azure ML • Part of Cortana Intelligence Suite • How SSAS Compares? o Similar algorithms o No web based environment (ML Studio) o Limited to RDBMS for mining models o Limited client applications (no web service)
  • 7. Main Players Azure ML BigML Amazon ML Google Prediction IBM Watson ML Flexibility High High Low Low Low Usability High Med High Low High Training time Low Low High Med High Accuracy (AUC) High High High Med High Cloud/ On-premises +/- +/+ +/- +/- +/- Algorithms Classification Regression Clustering Anomaly detect Recommendations Classification Regression Clustering Anomaly Recommend Classification Regression Classification Regression Semantic mining Hypothesis rank Regression Customizations Model parameters R-script Evaluation support Own models C#, R, Node.js Few parameters
  • 8. 1. Dataset Azure ML Flow 2. Training Experiment 3. Predictive Experiment 4. Publish Web Service 5. Retrain Model
  • 10. Data Determine the Algorithm • Linear Algorithms o Classification - classes separated by straight line o Support Vector Machine – wide gap instead of line o Regression – linear relation between variables and label • Non-Linear Algorithms o Decision Trees and Jungles - divide space into regions o Neural Networks – complex and irregular boundaries • Special Algorithms o Ordinal Regression – ranked values (i.e. race) o Poisson - discrete distribution (i.e. count of events) o Bayesian – normal distribution of errors (bell curve)
  • 11. • ROC Curve o TP Rate = True Positives / All Positives o FP Rate = False Positives / All Negatives • Example • AUC (Area Under Curve) o KPI for model performance o 0.5 = Random prediction o 1 = Perfect match Model Performance (Binary) TP Rate FP Rate 1-FP Rate 5 0.56 0.99 0.01 7 0.78 0.81 0.19 9 0.91 0.42 0.58
  • 12. • Probability Threshold o Cost of one error could be much higher that cost of other o (i.e. Spam filter vs Machine failure) • Accuracy o For symmetric 50/50 data • Precision o (i.e. 1000 devices, 6 fails, 8 predicted, 5 true failures) o Correct positives (i.e. 5/8 = 0.625, FP are expensive) • Recall o Correctly predicted positives (i.e. 5/6=0.83, FN are expensive) • F1 o Balanced cost of Precision/Recall Threshold Selection (Binary)
  • 13. Model Performance (Regression) • Coefficient of Determination (R2) o Single numeric KPI – how well data fits model o R2>0.6 – good, R2>0.8 – very good R2=1 – perfect • Mean Absolute Error / Root Mean Squared Error o Deviation of the estimates from the observed values o Compare model errors measure in the SAME units • Relative Absolute Error / Relative Squared Error o % deviation from real value o Compare model errors measure in the DIFFERENT units
  • 15. This is TS Data
  • 16. And this is NOT
  • 17. Time Series for Sensor Data • TS Data o Sequence of data from the same source over time o Regular and Irregular TS Data o Entries typically do not change • Time Series DB o Optimized for TS Data • Process Historian – more than TS DB o Interfaces to read data from multiple data sources o Render graphics for meaningful points o Statistical process control o Redundancy and high availability
  • 18. When TS overperform RDBMS • Target scenarios o High I/O rate o Number of tags o Volume of data o Aggregation of irregular data o Compression & De-duplication • Requires a learning o Do you expect that many data? o Do you need to plot? o Do you need to aggregate?
  • 19. • Open-source distributed TS database • Key Features o Easy setup, no external dependencies, implemented in Go o Comprehensive documentation o Scalable, highly efficient o REST API (JSON) o Supports .NET o SQL-like syntax o On-premise and cloud • Top ranked TS DB
  • 20. InfluxDB vs NonSQL for TS Data • InfluxDB vs MongoDB o WRITE: 27x greater o QUERY: Equal performance o STORAGE: 84x less • InfluxDB vs Elasticsearch o WRITE: 8x greater o QUERY: 3.5x – 7.5x faster o STORAGE: 4x less • InfluxDB vs OpenTSDB o WRITE: 5x greater o QUERY: 4x faster o STORAGE: 16.5x less • InfluxDB vs Cassandra o WRITE: 4.5x greater o QUERY: up to 168x faster o STORAGE: 10.8x less • InfluxDB vs DocumentDB o More popular o Cloud and on-premises o No external dependencies o Aggregations
  • 21. Scalability • Single node or cluster o Single node is open source and free • Recommendations • Query complexity (Moderate) o Multiple functions, few regular expressions o Complex GROUP BY clause or sampling over weeks o Runtime 500ms – 5sec Load Resources Writes/Sec Moderate Queries/Sec. Unique Series Low Cores: 2-4; RAM: 2-4 GB 0 - 5K 0 - 5 0 – 100K Moderate Cores: 4-6; RAM: 8-32 GB 5K - 250K 5 - 25 100K - 1M High Cores: 8+; RAM: 32+ 250K – 750K 25 - 100 1M - 10M
  • 22. Key Concepts Term Description Measurement Container Point Single record for timestamp Field Set Required; Not-indexed Field key Define what is measured Field value Actual measured value (string, bool, int64, float64) Tag Set Metadata about the point Optional; Indexed; Key-value; Tag key Unique per measurement Tag value Unique per tag key Series Data points with common tag set • Aggregation functions • Retention policies • Downsampling • Continuous queries
  • 23. Functions Aggregations Selectors Transformations Predictors COUNT() BOTTOM() CEILING() HOLT_WINTERS() DISTINCT() FIRST() CUMULATIVE_SUM() INTEGRAL() LAST() DERIVATIVE() MEAN() MAX() DIFFERENCE() MEDIAN() MIN() ELAPSED() MODE() PERCENTILE() FLOOR() SPREAD() SAMPLE() HISTOGRAM() STDDEV() TOP() MOVING_AVERAGE() SUM() NON_NEGATIVE_DERIVATIVE()
  • 26. Takeaways • Time Series o Time-series for monitoring and sensor data o InfluxData performance and design papers o InfluxDB hardware sizing guide o InfluxDB concepts o InfluxDB schema • Machine Learning o Choosing the right algorithm (Infographic) o Cortana Intelligence Gallery (3700 Sample Azure ML Projects) o Evaluating model performance o Azure ML documentation (full) o Azure ML video guidelines
  • 27. Thanks to our Sponsors: Global Sponsor: Platinum Sponsors: Swag Sponsors: Media Partners: With the support of:
  • 28. Upcoming events SQLSaturday #519 in may! http://www.sqlsaturday.com/519/