ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
& Spark
& Spark
Level Setting
Mongo db &_spark
Mongo db &_spark
Mongo db &_spark
TROUGH OF
Disillusionment
HDFS
Distributed Data
HDFS
YARN
Distributed Resources
HDFS
YARN
MapReduce
Distributed Processing
HDFS
YARN
Hive
Pig
Domain Specific Languages
MapReduce
Interactive Shell
Easy (-er)
Caching
HDFS
Distributed Data
HDFS
YARN
Distributed Resources
HDFS
YARN
SparkHadoop
Distributed Processing
HDFS
YARN
SparkHadoop
Mesos
HDFS
Stand
Alone
YARN
SparkHadoop
Mesos
HDFS
Stand
Alone
YARN
SparkHadoop
Mesos
Hive
Pig
HDFS
Stand
Alone
YARN
SparkHadoop
Mesos
Hive
Pig
Spark
Shell
HDFS
Stand
Alone
YARN
SparkHadoop
Mesos
Hive
Pig
Spark
Shell
Spark
Streaming
HDFS
Stand
Alone
YARN
SparkHadoop
Mesos
Hive
Pig
Spark
SQL
Spark
Shell
Spark
Streaming
HDFS
Stand
Alone
YARN
SparkHadoop
Mesos
Hive
Pig
Spark
SQL
Spark
Shell
Spark
Streaming
HDFS
Stand
Alone
YARN
SparkHadoop
Mesos
Hive
Pig
Spark
SQL
Spark
Shell
Spark
Streaming
Stand
Alone
YARN
SparkHadoop
Mesos
Hive
Pig
Spark
SQL
Spark
Shell
Spark
Streaming
Spark
Streaming
Hive
Spark
Shell
Mesos
Hadoop
Pig
Spark
SQL
Spark
Stand
Alone
YARN
Stand
Alone
YARN
Spark
Mesos
Spark
SQL
Spark
Shell
Spark
Streaming
Stand
Alone
YARN
Spark
Mesos
Spark
SQL
Spark
Shell
Spark
Streaming
execut
or
Worker Node
execut
or
Worker Node
Driver
Resilient Distributed Datasets
Resilient Distributed Datasets
f(x¡¯¡¯) = yParellelize = xt(x) = x¡¯t(x¡¯) = x¡¯¡¯
t(x) = x¡¯t(x¡¯) = x¡¯¡¯f(x¡¯¡¯) = x¡¯¡¯¡¯Parellelize = x
Parallelization
t(x) = x¡¯t(x¡¯) = x¡¯¡¯f(x¡¯¡¯) = x¡¯¡¯¡¯Parellelize = x
Transformations
Tranformations
filter( func )
union( func )
intersection( set )
distinct( n )
map( function )
t(x) = x¡¯t(x¡¯) = x¡¯¡¯f(x¡¯¡¯) = x¡¯¡¯¡¯Parellelize = x
Action
Actions
collect()
count()
first()
take( n )
reduce( function )
f(x) = x¡¯f(x¡¯) = x¡¯¡¯t(x¡¯¡¯) = x¡¯¡¯¡¯Parellelize = x
Lineage
Lineage
Lineage
Lineage
Lineage
https://github.com/mongodb/mongo-hadoop
{
"_id" : ObjectId("4f16fc97d1e2d32371003e27"),
"body" : "the scrimmage is still up in the air.
"subFolder" : "notes_inbox",
"mailbox" : "bass-e",
"filename" : "450.",
"headers" : {
"X-cc" : "",
"From" : "michael.simmons@enron.com",
"Subject" : "Re: Plays and other information",
"X-Folder" : "Eric_Bass_Dec2000Notes FoldersNotes inbox",
"Content-Transfer-Encoding" : "7bit",
"X-bcc" : "",
"To" : "eric.bass@enron.com",
"X-Origin" : "Bass-E",
"X-FileName" : "ebass.nsf",
"X-From" : "Michael Simmons",
"Date" : "Tue, 14 Nov 2000 08:22:00 -0800 (PST)",
"X-To" : "Eric Bass",
"Message-ID" : "<6884142.1075854677416.JavaMail.evans@thyme>",
"Content-Type" : "text/plain; charset=us-ascii",
"Mime-Version" : "1.0"
}
}
{
"_id" : "gretchen.hardeway@enron.com|shirley.crenshaw@enron.com",
"value" : 2
}
{
"_id" : "kmccomb@austin-mccomb.com|brian@enron.com",
"value" : 2
}
{
"_id" : "sally.beck@enron.com|sandy.stone@enron.com",
"value" : 2
}
Eratosthenes
Democritus
Hypatia
Shemp
Euripides
Spark Configuration
Configuration conf = new Configuration();
conf.set(
"mongo.job.input.format",
"com.mongodb.hadoop.MongoInputFormat¡±
);
conf.set(
"mongo.input.uri",
"mongodb://localhost:27017/db.collection¡±
);
Spark Context
JavaPairRDD<Object, BSONObject> documents =
context.newAPIHadoopRDD(
conf,
MongoInputFormat.class,
Object.class,
BSONObject.class
);
Spark Context
JavaPairRDD<Object, BSONObject> documents =
context.newAPIHadoopRDD(
conf,
MongoInputFormat.class,
Object.class,
BSONObject.class
);
Spark Context
JavaPairRDD<Object, BSONObject> documents =
context.newAPIHadoopRDD(
conf,
MongoInputFormat.class,
Object.class,
BSONObject.class
);
Spark Context
JavaPairRDD<Object, BSONObject> documents =
context.newAPIHadoopRDD(
conf,
MongoInputFormat.class,
Object.class,
BSONObject.class
);
Spark Context
JavaPairRDD<Object, BSONObject> documents =
context.newAPIHadoopRDD(
conf,
MongoInputFormat.class,
Object.class,
BSONObject.class
);
mongos mongos
Data Services
Deployment Artifacts
Hadoop
Connector Jar
Fat Jar
Java Driver Jar
Spark Submit
/usr/local/spark-1.5.1/bin/spark-submit 
--class com.mongodb.spark.examples.DataframeExample 
--master local Examples-1.0-SNAPSHOT.jar
Stand
Alone
YARN
Spark
Mesos
Spark
SQL
Spark
Shell
Spark
Streaming
JavaRDD<Message> messages = documents.map (
new Function<Tuple2<Object, BSONObject>, Message>() {
public Message call(Tuple2<Object, BSONObject> tuple) {
BSONObject header =
(BSONObject)tuple._2.get("headers");
Message m = new Message();
m.setTo( (String) header.get("To") );
m.setX_From( (String) header.get("From") );
m.setMessage_ID( (String) header.get( "Message-ID" ) );
m.setBody( (String) tuple._2.get( "body" ) );
return m;
}
}
);
& Spack
DEMO
Mongo db &amp;_spark
Stand
Alone
YARN
Spark
Mesos
Spark
SQL
Spark
Shell
Spark
Streaming
Mongo db &amp;_spark
Mongo db &amp;_spark
mongos mongos
Data Services
Mongo db &amp;_spark
THANK
S!{ Name: ¡®Bryan Reinero¡¯,
Title: ¡®Developer
Advocate¡¯,
Twitter: ¡®@blimpyacht¡¯,
Email:
¡®bryan@mongdb.com¡¯ }

More Related Content

What's hot (11)

Ramping up your Devops Fu for Big Data developers
Ramping up your Devops Fu for Big Data developersRamping up your Devops Fu for Big Data developers
Ramping up your Devops Fu for Big Data developers
Fran?ois Garillot
?
Life of PySpark - A tale of two environments
Life of PySpark - A tale of two environmentsLife of PySpark - A tale of two environments
Life of PySpark - A tale of two environments
Shankar M S
?
Introduction to the Hadoop Ecosystem (codemotion Edition)
Introduction to the Hadoop Ecosystem (codemotion Edition)Introduction to the Hadoop Ecosystem (codemotion Edition)
Introduction to the Hadoop Ecosystem (codemotion Edition)
Uwe Printz
?
The Evolution of Data Analysis with Hadoop - StampedeCon 2014
The Evolution of Data Analysis with Hadoop - StampedeCon 2014The Evolution of Data Analysis with Hadoop - StampedeCon 2014
The Evolution of Data Analysis with Hadoop - StampedeCon 2014
StampedeCon
?
Introduction of R on Hadoop
Introduction of R on HadoopIntroduction of R on Hadoop
Introduction of R on Hadoop
Chung-Tsai Su
?
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | EdurekaPig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Edureka!
?
Getting Started on Hadoop
Getting Started on HadoopGetting Started on Hadoop
Getting Started on Hadoop
Paco Nathan
?
Big Data - Fast Machine Learning at Scale + Couchbase
Big Data - Fast Machine Learning at Scale + CouchbaseBig Data - Fast Machine Learning at Scale + Couchbase
Big Data - Fast Machine Learning at Scale + Couchbase
Fujio Turner
?
Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)
Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)
Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)
Jeffrey Breen
?
Big Data - Load, Index & Query the EZ way - HPCC Systems
Big Data - Load, Index & Query the EZ way - HPCC SystemsBig Data - Load, Index & Query the EZ way - HPCC Systems
Big Data - Load, Index & Query the EZ way - HPCC Systems
Fujio Turner
?
Productive data engineer
Productive data engineerProductive data engineer
Productive data engineer
Rafa? Wojdy?a
?
Ramping up your Devops Fu for Big Data developers
Ramping up your Devops Fu for Big Data developersRamping up your Devops Fu for Big Data developers
Ramping up your Devops Fu for Big Data developers
Fran?ois Garillot
?
Life of PySpark - A tale of two environments
Life of PySpark - A tale of two environmentsLife of PySpark - A tale of two environments
Life of PySpark - A tale of two environments
Shankar M S
?
Introduction to the Hadoop Ecosystem (codemotion Edition)
Introduction to the Hadoop Ecosystem (codemotion Edition)Introduction to the Hadoop Ecosystem (codemotion Edition)
Introduction to the Hadoop Ecosystem (codemotion Edition)
Uwe Printz
?
The Evolution of Data Analysis with Hadoop - StampedeCon 2014
The Evolution of Data Analysis with Hadoop - StampedeCon 2014The Evolution of Data Analysis with Hadoop - StampedeCon 2014
The Evolution of Data Analysis with Hadoop - StampedeCon 2014
StampedeCon
?
Introduction of R on Hadoop
Introduction of R on HadoopIntroduction of R on Hadoop
Introduction of R on Hadoop
Chung-Tsai Su
?
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | EdurekaPig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Edureka!
?
Getting Started on Hadoop
Getting Started on HadoopGetting Started on Hadoop
Getting Started on Hadoop
Paco Nathan
?
Big Data - Fast Machine Learning at Scale + Couchbase
Big Data - Fast Machine Learning at Scale + CouchbaseBig Data - Fast Machine Learning at Scale + Couchbase
Big Data - Fast Machine Learning at Scale + Couchbase
Fujio Turner
?
Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)
Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)
Big Data Step-by-Step: Using R & Hadoop (with RHadoop's rmr package)
Jeffrey Breen
?
Big Data - Load, Index & Query the EZ way - HPCC Systems
Big Data - Load, Index & Query the EZ way - HPCC SystemsBig Data - Load, Index & Query the EZ way - HPCC Systems
Big Data - Load, Index & Query the EZ way - HPCC Systems
Fujio Turner
?
Productive data engineer
Productive data engineerProductive data engineer
Productive data engineer
Rafa? Wojdy?a
?

Viewers also liked (11)

Klasa I B 2011
Klasa I B 2011Klasa I B 2011
Klasa I B 2011
taz_org
?
§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß
§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß
§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß
Konstantin Koniukhou
?
EXTREME CASH Reloaded 2016
EXTREME CASH Reloaded 2016EXTREME CASH Reloaded 2016
EXTREME CASH Reloaded 2016
ron nilson
?
Por siempre  te kererePor siempre  te kerere
Por siempre te kerere
nayelli reatto arellano
?
Awe of Nature: How Culture & History are Shaping our Destiny
Awe of Nature: How Culture & History are Shaping our DestinyAwe of Nature: How Culture & History are Shaping our Destiny
Awe of Nature: How Culture & History are Shaping our Destiny
John Roulac
?
Klasa I C 2011
Klasa I C 2011Klasa I C 2011
Klasa I C 2011
taz_org
?
APLICACI?N INFORM?TICA PARA EL C?LCULO DE LA CAPACIDAD DE TRANSPORTE PARA CAB...APLICACI?N INFORM?TICA PARA EL C?LCULO DE LA CAPACIDAD DE TRANSPORTE PARA CAB...
APLICACI?N INFORM?TICA PARA EL C?LCULO DE LA CAPACIDAD DE TRANSPORTE PARA CAB...
Gilberto Mej¨ªa
?
Data exchange models for sustainable energy planning
Data exchange models for sustainable energy planningData exchange models for sustainable energy planning
Data exchange models for sustainable energy planning
DataChallenges
?
Tipos de Cable de RedTipos de Cable de Red
Tipos de Cable de Red
Anchelho Shanghashy
?
Muzyka pop prezentacja
Muzyka pop prezentacjaMuzyka pop prezentacja
Muzyka pop prezentacja
kiebek
?
Escuelas administrativasEscuelas administrativas
Escuelas administrativas
isa martinez
?
Klasa I B 2011
Klasa I B 2011Klasa I B 2011
Klasa I B 2011
taz_org
?
§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß
§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß
§æ§å§â§ß§Ú§ä§å§â§Ñ §Õ§Ý§ñ §Õ§Ö§â§Ö§Ó§ñ§ß§ß§í§ç §Ñ§ß§Ô§Ý§Ú§Û§ã§Ü§Ú§ç §à§Ü§à§ß
Konstantin Koniukhou
?
EXTREME CASH Reloaded 2016
EXTREME CASH Reloaded 2016EXTREME CASH Reloaded 2016
EXTREME CASH Reloaded 2016
ron nilson
?
Por siempre  te kererePor siempre  te kerere
Por siempre te kerere
nayelli reatto arellano
?
Awe of Nature: How Culture & History are Shaping our Destiny
Awe of Nature: How Culture & History are Shaping our DestinyAwe of Nature: How Culture & History are Shaping our Destiny
Awe of Nature: How Culture & History are Shaping our Destiny
John Roulac
?
Klasa I C 2011
Klasa I C 2011Klasa I C 2011
Klasa I C 2011
taz_org
?
APLICACI?N INFORM?TICA PARA EL C?LCULO DE LA CAPACIDAD DE TRANSPORTE PARA CAB...APLICACI?N INFORM?TICA PARA EL C?LCULO DE LA CAPACIDAD DE TRANSPORTE PARA CAB...
APLICACI?N INFORM?TICA PARA EL C?LCULO DE LA CAPACIDAD DE TRANSPORTE PARA CAB...
Gilberto Mej¨ªa
?
Data exchange models for sustainable energy planning
Data exchange models for sustainable energy planningData exchange models for sustainable energy planning
Data exchange models for sustainable energy planning
DataChallenges
?
Tipos de Cable de RedTipos de Cable de Red
Tipos de Cable de Red
Anchelho Shanghashy
?
Muzyka pop prezentacja
Muzyka pop prezentacjaMuzyka pop prezentacja
Muzyka pop prezentacja
kiebek
?
Escuelas administrativasEscuelas administrativas
Escuelas administrativas
isa martinez
?

Similar to Mongo db &amp;_spark (11)

MongoDB World 2018: Spark and Machine Learning
MongoDB World 2018: Spark and Machine LearningMongoDB World 2018: Spark and Machine Learning
MongoDB World 2018: Spark and Machine Learning
MongoDB
?
Live Demo: Introducing the Spark Connector for MongoDB
Live Demo: Introducing the Spark Connector for MongoDBLive Demo: Introducing the Spark Connector for MongoDB
Live Demo: Introducing the Spark Connector for MongoDB
MongoDB
?
MongoDB & Spark
MongoDB & SparkMongoDB & Spark
MongoDB & Spark
MongoDB
?
Analytics and Machine Learning with Spark and MongoDB
Analytics and Machine Learning with Spark and MongoDBAnalytics and Machine Learning with Spark and MongoDB
Analytics and Machine Learning with Spark and MongoDB
MongoDB
?
PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£©
PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£© PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£©
PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£©
Ryuji Tamagawa
?
Hadoop Essential for Oracle Professionals
Hadoop Essential for Oracle ProfessionalsHadoop Essential for Oracle Professionals
Hadoop Essential for Oracle Professionals
Chien Chung Shen
?
Yarn by default (Spark on YARN)
Yarn by default (Spark on YARN)Yarn by default (Spark on YARN)
Yarn by default (Spark on YARN)
Ferran Gal¨ª Reniu
?
20171012 found IT #9 PySpark¤Î¿±Ëù
20171012 found  IT #9 PySpark¤Î¿±Ëù20171012 found  IT #9 PySpark¤Î¿±Ëù
20171012 found IT #9 PySpark¤Î¿±Ëù
Ryuji Tamagawa
?
Tachyon and Apache Spark
Tachyon and Apache SparkTachyon and Apache Spark
Tachyon and Apache Spark
rhatr
?
Apache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdf
Apache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdfApache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdf
Apache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdf
MounikaPolabathina
?
July 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣs
July 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣsJuly 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣs
July 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣs
ryancox
?
MongoDB World 2018: Spark and Machine Learning
MongoDB World 2018: Spark and Machine LearningMongoDB World 2018: Spark and Machine Learning
MongoDB World 2018: Spark and Machine Learning
MongoDB
?
Live Demo: Introducing the Spark Connector for MongoDB
Live Demo: Introducing the Spark Connector for MongoDBLive Demo: Introducing the Spark Connector for MongoDB
Live Demo: Introducing the Spark Connector for MongoDB
MongoDB
?
MongoDB & Spark
MongoDB & SparkMongoDB & Spark
MongoDB & Spark
MongoDB
?
Analytics and Machine Learning with Spark and MongoDB
Analytics and Machine Learning with Spark and MongoDBAnalytics and Machine Learning with Spark and MongoDB
Analytics and Machine Learning with Spark and MongoDB
MongoDB
?
PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£©
PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£© PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£©
PySpark¤Î¿±Ëù£¨20170630 sapporo db analytics showcase£©
Ryuji Tamagawa
?
Hadoop Essential for Oracle Professionals
Hadoop Essential for Oracle ProfessionalsHadoop Essential for Oracle Professionals
Hadoop Essential for Oracle Professionals
Chien Chung Shen
?
20171012 found IT #9 PySpark¤Î¿±Ëù
20171012 found  IT #9 PySpark¤Î¿±Ëù20171012 found  IT #9 PySpark¤Î¿±Ëù
20171012 found IT #9 PySpark¤Î¿±Ëù
Ryuji Tamagawa
?
Tachyon and Apache Spark
Tachyon and Apache SparkTachyon and Apache Spark
Tachyon and Apache Spark
rhatr
?
Apache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdf
Apache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdfApache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdf
Apache Spark vs. Hadoop Is Spark Set to Replace Hadoop.pdf
MounikaPolabathina
?
July 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣs
July 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣsJuly 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣs
July 2010 Triangle Hadoop Users Group - Chad Vawter ºÝºÝߣs
ryancox
?

More from Bryan Reinero (6)

Event sourcing
Event sourcingEvent sourcing
Event sourcing
Bryan Reinero
?
Systems of engagement
Systems of engagementSystems of engagement
Systems of engagement
Bryan Reinero
?
Internet of things
Internet of thingsInternet of things
Internet of things
Bryan Reinero
?
Polyglot Persistence
Polyglot PersistencePolyglot Persistence
Polyglot Persistence
Bryan Reinero
?
Code instrumentation
Code instrumentationCode instrumentation
Code instrumentation
Bryan Reinero
?
Mongo db v3_deep_dive
Mongo db v3_deep_diveMongo db v3_deep_dive
Mongo db v3_deep_dive
Bryan Reinero
?

Recently uploaded (20)

Brave Browser 1.68.134 Crack free key
Brave  Browser  1.68.134  Crack free keyBrave  Browser  1.68.134  Crack free key
Brave Browser 1.68.134 Crack free key
alihamzakpa037
?
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
?
Software+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdfSoftware+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdf
kedofef453
?
Driver Genius 24 Crack 2025 License Key Free Download
Driver Genius 24 Crack 2025 License Key Free DownloadDriver Genius 24 Crack 2025 License Key Free Download
Driver Genius 24 Crack 2025 License Key Free Download
umeerbinfaizan
?
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLMJava and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Edward Burns
?
Adobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free DownloadAdobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free Download
basitayoubi105
?
ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]
umeerbinfaizan
?
Sublime Text Crack 2025 LATEST Version FREE
Sublime Text Crack  2025 LATEST Version FREESublime Text Crack  2025 LATEST Version FREE
Sublime Text Crack 2025 LATEST Version FREE
muhammadwaqaryounus6
?
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
?
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptxShopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Michael Foster
?
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
basitayoubi007
?
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
Imma Valls Bernaus
?
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
?
Wondershare PDFelement Pro Crack FREE Download
Wondershare PDFelement Pro Crack FREE DownloadWondershare PDFelement Pro Crack FREE Download
Wondershare PDFelement Pro Crack FREE Download
waqarcracker5
?
Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025
ahsan01kp
?
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
numan02kp
?
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
?
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
?
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
?
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
shahzad011kp
?
Brave Browser 1.68.134 Crack free key
Brave  Browser  1.68.134  Crack free keyBrave  Browser  1.68.134  Crack free key
Brave Browser 1.68.134 Crack free key
alihamzakpa037
?
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
?
Software+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdfSoftware+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdf
kedofef453
?
Driver Genius 24 Crack 2025 License Key Free Download
Driver Genius 24 Crack 2025 License Key Free DownloadDriver Genius 24 Crack 2025 License Key Free Download
Driver Genius 24 Crack 2025 License Key Free Download
umeerbinfaizan
?
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLMJava and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Edward Burns
?
Adobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free DownloadAdobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free Download
basitayoubi105
?
ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]
umeerbinfaizan
?
Sublime Text Crack 2025 LATEST Version FREE
Sublime Text Crack  2025 LATEST Version FREESublime Text Crack  2025 LATEST Version FREE
Sublime Text Crack 2025 LATEST Version FREE
muhammadwaqaryounus6
?
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
?
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptxShopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Shopify - CNCF March 2025 Meetup - Presentation - 26-03-25.pptx
Michael Foster
?
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
basitayoubi007
?
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Cl...
Imma Valls Bernaus
?
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
?
Wondershare PDFelement Pro Crack FREE Download
Wondershare PDFelement Pro Crack FREE DownloadWondershare PDFelement Pro Crack FREE Download
Wondershare PDFelement Pro Crack FREE Download
waqarcracker5
?
Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025
ahsan01kp
?
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
numan02kp
?
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
?
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
?
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
?
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
shahzad011kp
?

Mongo db &amp;_spark

Editor's Notes

  • #29: A fault-tolerant collection of elements operated on in parallel best suited for batch applications
  • #45: MongoInputFormat allows us to read from a live MongoDB instance. We could also use BSONFileInputFormat to read BSON snapshots.
  • #46: JavaPamongodbConfig
  • #47: JavaPamongodbConfig
  • #48: JavaPamongodbConfig
  • #49: JavaPamongodbConfig
  • #50: JavaPamongodbConfig