SlideShare a Scribd company logo
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
What to expect?
 Use Cases Of Real Time Analytics
 Movie Recommendation System Using Spark
 What Is Spark?
 Getting Movie Dataset
 Spark Streaming
 Collaborative Filtering
 Spark MLlib
 Fetching Results
 Storing Results
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Use Cases of
Real Time Analytics
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Use Cases of Real Time Analytics
Government
 Government agencies perform Real
Time Analysis mostly in the field of
national security.
 Countries need to continuously
keep a track of all the military and
police agencies for updates
regarding threats to security.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Use Cases of Real Time Analytics
Healthcare
 Healthcare domain uses Real Time
analysis to continuously check the
medical status of critical patients.
 Hospitals on the look out for blood
and organ transplants need to stay
in a real-time contact with each
other during emergencies.
 Getting medical attention on time is
a matter of life and death for
patients.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Use Cases of Real Time Analytics
Telecommunications
 Companies revolving around
services in the form of calls, video
chats and streaming use real time
analysis to reduce customer churn
and stay ahead of competition.
 They also extract measurements of
jitter and delay in mobile networks
to improve customer experiences.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Use Cases of Real Time Analytics
Banking
 Banking transacts with almost all of
the world’s money.
 It becomes very important to
ensure fault tolerant transactions
across the whole system.
 Fraud detection is made possible
through real time analytics in
banking.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Use Cases of Real Time Analytics
Stock Market
 Stock brokers use real time
analytics to predict movement of
stock portfolios.
 Companies re-think their business
model after using real time
analytics to analyze the market
demand for their brand.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Movie Recommendation System
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Movie Recommendation System
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Movie Recommendation System
Problem Statement
To build a Movie Recommendation System which recommends movies based
on a user’s preferences using Apache Spark.
Process huge amount of data
Easy to use
Fast processing
Our Requirements:
Input from multiple sources
Apache Spark is the perfect tool to implement our Movie Recommendation System.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Use Case – Flow Diagram
Huge amount of
Movie Rating data
1
Data from
Streaming / HDFS
2
Getting Input using
Spark Streaming
3 4
Machine Learning
Using MLlib
Train the data
Evaluate ALS
Generate
Recommendations
Fetching Results
using Spark SQL
5
Storing Results in
RDBMS System for
Websites
6
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
What is Spark?
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
What is Spark?
 Apache Spark is an open-source cluster-computing framework for real
time processing developed by the Apache Software Foundation.
 Spark provides an interface for programming entire clusters with implicit
data parallelism and fault-tolerance.
 It was built on top of Hadoop MapReduce and it extends the
MapReduce model to efficiently use more types of computations.
Reduction
in time
Parallel
Serial
Figure: Data Parallelism In Spark
Figure: Real Time Processing In Spark
Figure: Support for multiple source formats Figure: Lazy Evaluation
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark Features
Deployment
Powerful
Caching
Polyglot
Features
100x faster than
for large scale data
processing
Simple programming
layer provides powerful
caching and disk
persistence capabilities
Can be deployed through
Mesos, Hadoop via Yarn, or
Spark’s own cluster manger
Can be programmed
in Scala, Java,
Python and R
Speed
vs
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Movie Dataset
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Movie Dataset
User Ratings from
BookMyShow
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Movie Dataset
Movie Ratings In
Our Dataset
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Getting Dataset
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Getting Dataset
 For our Movie Recommendation System, we can get user ratings from many popular
websites like IMDB, Rotten Tomatoes and Times Movie Ratings.
 This dataset is available in many formats such as CSV files, text files and databases.
 We can either stream the data live from the websites or download and store them in our
local file system or HDFS.
Figure: Various File Formats
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark Streaming
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark Streaming
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark Streaming
 Spark Streaming is used for processing real-time streaming data
 Spark Streaming enables high-throughput and fault-tolerant stream
processing of live data streams
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Collaborative Filtering
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Collaborative Filtering
 We will use Collaborative Filtering (CF) to predict the ratings for users for particular
movies based on their ratings for other movies.
 We then collaborate this with other users’ rating for that particular movie.
Movie Alice Bob Carol Dave
Shutter Island 4 3 5 1
Fight Club 5 4 4 2
Dark Knight 5 3 4
21 4 3 5
Home Alone 4 4 5 5
Figure: Predicting the rating of Dave for Dark Knight and Carol for 21 using Collaborative Filtering
?
?
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark MLlib
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark MLlib
 Spark MLlib is used to perform machine learning in Apache Spark.
 Machine learning in Spark is implemented using Spark’s MLlib.
 MLlib stands for Machine Learning Library.
Train Data using
Alternating Least
Squares (ALS)
Generate
Recommendations
using Collaborative
Filtering
Machine Learning
Using
Spark MLlib
Figure: Machine Learning Flow Diagram
Machine
Learning Tools
ML Algorithms
Featurization
Pipelines
Persistence
Utilities
Figure: Machine Learning Tools
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Fetching Results
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark SQL for Fetching Results
Machine Learning
Output
Spark SQL Results
 To get the results from our Machine Learning, we need to use Spark
SQL’s DataFrame, Dataset and SQL Service.
 The results in Machine Learning needs to be stored in a RDBMS so
that our web application can display the recommendations to a
particular use.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Ratings for Movies
Ratings of Movies
for User 77
Figure: User 77’s ratings for different movies
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Recommended Movies
Total Number of
Recommendations
for User 77
Top Movie
Recommendations
for User 77
Figure: Movies recommended for User 77
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Storing Results
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Storing Results
 The results for our Movie Recommendation System can be stored either locally or into
external storage systems.
 We can store the Recommended Movies along with the Ratings in a text file or a CSV file.
 We should prefer storing the results into an RDBMS system so that we can access it directly
from our web application and display recommendations and top movies.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark Job Trends
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Spark Job Trends
 The following is the Job Trend of
Apache Spark across the world.
 Spark has almost thrice the average
number of jobs in comparison to its
competitors and is the market leader
from 2014.
Source: www.indeed.com
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Summary
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Summary
Real Time Analytics
Spark MLlibSpark Streaming
Movie Recommendation System
Spark Job Trends
What is Spark?
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Conclusion
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Conclusion
Congrats!
We have hence demonstrated the power of Apache Spark in Real-Time Analysis.
The hands-on examples will give you the required confidence to work on any future
projects you encounter in Apache Spark.
www.edureka.co/apache-spark-scala-trainingEDUREKA SPARK CERTIFICATION TRAINING
Thank You …
Questions/Queries/Feedback

More Related Content

What's hot (20)

PPTX
Apache Spark overview
DataArt
 
PDF
The Rise of ZStandard: Apache Spark/Parquet/ORC/Avro
Databricks
 
PDF
Introduction SQL Analytics on Lakehouse Architecture
Databricks
 
PPTX
[DSC Europe 22] Lakehouse architecture with Delta Lake and Databricks - Draga...
DataScienceConferenc1
 
PDF
3D: DBT using Databricks and Delta
Databricks
 
PPTX
Unified Batch & Stream Processing with Apache Samza
DataWorks Summit
 
PDF
Spark SQL
Joud Khattab
 
PDF
Lessons from the Field: Applying Best Practices to Your Apache Spark Applicat...
Databricks
 
PDF
A Thorough Comparison of Delta Lake, Iceberg and Hudi
Databricks
 
PPTX
Introduction to Data Engineering
Vivek Aanand Ganesan
 
PDF
Build Real-Time Applications with Databricks Streaming
Databricks
 
PDF
Native Support of Prometheus Monitoring in Apache Spark 3.0
Databricks
 
PDF
Azure Data Factory v2
inovex GmbH
 
PDF
Simplifying Big Data Analytics with Apache Spark
Databricks
 
PDF
Introduction to PySpark
Russell Jurney
 
PDF
Getting Started with Apache Spark on Kubernetes
Databricks
 
PDF
Delta Lake OSS: Create reliable and performant Data Lake by Quentin Ambard
Paris Data Engineers !
 
PDF
Data Mesh in Practice - How Europe's Leading Online Platform for Fashion Goes...
Dr. Arif Wider
 
PDF
Parquet performance tuning: the missing guide
Ryan Blue
 
PDF
Simplify Data Conversion from Spark to TensorFlow and PyTorch
Databricks
 
Apache Spark overview
DataArt
 
The Rise of ZStandard: Apache Spark/Parquet/ORC/Avro
Databricks
 
Introduction SQL Analytics on Lakehouse Architecture
Databricks
 
[DSC Europe 22] Lakehouse architecture with Delta Lake and Databricks - Draga...
DataScienceConferenc1
 
3D: DBT using Databricks and Delta
Databricks
 
Unified Batch & Stream Processing with Apache Samza
DataWorks Summit
 
Spark SQL
Joud Khattab
 
Lessons from the Field: Applying Best Practices to Your Apache Spark Applicat...
Databricks
 
A Thorough Comparison of Delta Lake, Iceberg and Hudi
Databricks
 
Introduction to Data Engineering
Vivek Aanand Ganesan
 
Build Real-Time Applications with Databricks Streaming
Databricks
 
Native Support of Prometheus Monitoring in Apache Spark 3.0
Databricks
 
Azure Data Factory v2
inovex GmbH
 
Simplifying Big Data Analytics with Apache Spark
Databricks
 
Introduction to PySpark
Russell Jurney
 
Getting Started with Apache Spark on Kubernetes
Databricks
 
Delta Lake OSS: Create reliable and performant Data Lake by Quentin Ambard
Paris Data Engineers !
 
Data Mesh in Practice - How Europe's Leading Online Platform for Fashion Goes...
Dr. Arif Wider
 
Parquet performance tuning: the missing guide
Ryan Blue
 
Simplify Data Conversion from Spark to TensorFlow and PyTorch
Databricks
 

Viewers also liked (7)

PDF
Comparing topic models for a movie recommendation system webist2014
Laura Po
 
PDF
Apache Spark Performance Observations
Adam Roberts
 
PPTX
Movie recommendation system using Apache Mahout and Facebook APIs
Smitha Mysore Lokesh
 
PDF
Developing a Movie recommendation Engine with Spark
Edureka!
 
PPTX
Building a Large-Scale, Adaptive Recommendation Engine with Apache Flink and ...
DataWorks Summit/Hadoop Summit
 
PPTX
How to Build a Recommendation Engine on Spark
Caserta
 
PDF
Recommender Systems (Machine Learning Summer School 2014 @ CMU)
Xavier Amatriain
 
Comparing topic models for a movie recommendation system webist2014
Laura Po
 
Apache Spark Performance Observations
Adam Roberts
 
Movie recommendation system using Apache Mahout and Facebook APIs
Smitha Mysore Lokesh
 
Developing a Movie recommendation Engine with Spark
Edureka!
 
Building a Large-Scale, Adaptive Recommendation Engine with Apache Flink and ...
DataWorks Summit/Hadoop Summit
 
How to Build a Recommendation Engine on Spark
Caserta
 
Recommender Systems (Machine Learning Summer School 2014 @ CMU)
Xavier Amatriain
 
Ad

Similar to Apache Spark Training | Spark Tutorial For Beginners | Apache Spark Certification | Edureka (20)

PDF
What is Apache Spark | Apache Spark Tutorial For Beginners | Apache Spark Tra...
Edureka!
 
PDF
Apache Spark Tutorial | Spark Tutorial for Beginners | Apache Spark Training ...
Edureka!
 
PDF
PySpark Programming | PySpark Concepts with Hands-On | PySpark Training | Edu...
Edureka!
 
PDF
Spark Hadoop Tutorial | Spark Hadoop Example on NBA | Apache Spark Training |...
Edureka!
 
PDF
Spark Hsinchu meetup
Yung-An He
 
PDF
Spark Streaming | Twitter Sentiment Analysis Example | Apache Spark Training ...
Edureka!
 
PDF
Spark SQL Tutorial | Spark Tutorial for Beginners | Apache Spark Training | E...
Edureka!
 
PDF
PySpark Training | PySpark Tutorial for Beginners | Apache Spark with Python ...
Edureka!
 
PDF
Pyspark Tutorial | Introduction to Apache Spark with Python | PySpark Trainin...
Edureka!
 
PDF
Spark Interview Questions and Answers | Apache Spark Interview Questions | Sp...
Edureka!
 
PDF
5 things one must know about spark!
Edureka!
 
PPTX
Spark for big data analytics
Edureka!
 
PPTX
Developing and deploying big data machine learning models
Narayana Swamy
 
PPT
Rails 3.1 sneak peak
Oleg Kossoy
 
PDF
Big Data 2.0 - How Spark technologies are reshaping the world of big data ana...
Lillian Pierson
 
PPTX
5 reasons why spark is in demand!
Edureka!
 
PPTX
Pathomation platform description 2020 slide share edition
Yves Sucaet
 
PDF
Spark is going to replace Apache Hadoop! Know Why?
Edureka!
 
PDF
Grc 300 Sap Sccess Control Implementation And Configuration Participant Handb...
urellkosakfk
 
PPTX
5 things one must know about spark!
Edureka!
 
What is Apache Spark | Apache Spark Tutorial For Beginners | Apache Spark Tra...
Edureka!
 
Apache Spark Tutorial | Spark Tutorial for Beginners | Apache Spark Training ...
Edureka!
 
PySpark Programming | PySpark Concepts with Hands-On | PySpark Training | Edu...
Edureka!
 
Spark Hadoop Tutorial | Spark Hadoop Example on NBA | Apache Spark Training |...
Edureka!
 
Spark Hsinchu meetup
Yung-An He
 
Spark Streaming | Twitter Sentiment Analysis Example | Apache Spark Training ...
Edureka!
 
Spark SQL Tutorial | Spark Tutorial for Beginners | Apache Spark Training | E...
Edureka!
 
PySpark Training | PySpark Tutorial for Beginners | Apache Spark with Python ...
Edureka!
 
Pyspark Tutorial | Introduction to Apache Spark with Python | PySpark Trainin...
Edureka!
 
Spark Interview Questions and Answers | Apache Spark Interview Questions | Sp...
Edureka!
 
5 things one must know about spark!
Edureka!
 
Spark for big data analytics
Edureka!
 
Developing and deploying big data machine learning models
Narayana Swamy
 
Rails 3.1 sneak peak
Oleg Kossoy
 
Big Data 2.0 - How Spark technologies are reshaping the world of big data ana...
Lillian Pierson
 
5 reasons why spark is in demand!
Edureka!
 
Pathomation platform description 2020 slide share edition
Yves Sucaet
 
Spark is going to replace Apache Hadoop! Know Why?
Edureka!
 
Grc 300 Sap Sccess Control Implementation And Configuration Participant Handb...
urellkosakfk
 
5 things one must know about spark!
Edureka!
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 

Recently uploaded (20)

PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PPT
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PPTX
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
July Patch Tuesday
Ivanti
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
July Patch Tuesday
Ivanti
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 

Apache Spark Training | Spark Tutorial For Beginners | Apache Spark Certification | Edureka