datatrota
Signup Login
Home Jobs Blog

Apache Spark Jobs in Nigeria

View jobs that require Apache Spark skill on TechTalentZone
  • Veegil Media logo

    Data Scientist

    Veegil MediaLagos, Nigeria11 October

    We are Veegil Media, a non-partisan technology and media organization that seeks to transform societies with technology. We promote civic engagement and good ...

    Onsite
  • eHealth4everyone logo

    Data Engineer

    eHealth4everyoneAbuja, Oyo, Nigeria07 October

    eHealth4everyone is a leading digital health social enterprise dedicated to making the world healthier. We are a new kind of mission-driven organization with ...

    Onsite
  • eHealth4everyone logo

    Data Engineer

    eHealth4everyoneAbuja, Nigeria11 September

    eHealth4everyone is a leading digital health social enterprise dedicated to making the world healthier. We are a new kind of mission-driven organization with ...

    Onsite
  • InterSwitch logo

    AI/MLOps Developer

    InterSwitchLagos, Nigeria11 September

    Interswitch Limited is an integrated payment and transaction processing company that provides technology integration, advisory services, transaction processing ...

    Hybrid
  • Onafriq logo

    Solution Architect

    OnafriqLagos, Nigeria22 August

    Onafriq is an omnichannel network of networks, making borders matter less by providing our partners with a single pathway to unlock the full power of ...

    Onsite
  • AltSchool Africa logo

    Data Engineering Instructor

    AltSchool AfricaLagos, Nigeria20 August

    AltSchool Africa is an Edtech product, an alternative to school, launched with the sole motivation to increase employability and reduce unemployment by helping ...

    Remote
  • eHealth4everyone logo

    Data Engineers (Data Lakes, Data Warehouses, and ETL)

    eHealth4everyoneAbuja, Oyo, Nigeria06 August

    eHealth4everyone is a leading digital health social enterprise dedicated to making the world healthier. We are a new kind of mission-driven organization with ...

    Onsite
  • NewGlobe logo

    Senior Business Intelligence Engineer

    NewGlobeLagos, Nigeria17 July

    NewGlobe supports visionary governments to transform public education systems, the cornerstone of a prosperous, equitable, and peaceful society. With a ...

    Onsite
  • Bluechip Technologies Limited logo

    Senior Data Analyst

    Bluechip Technologies..Rivers, Nigeria19 June

    BlueChip Technologies is a leading business application firm focused exclusively on assisting organizations in planning, designing, implementing and operating ...

    Onsite
  • TalentUp Africa logo

    Data & Machine Learning Engineer

    TalentUp AfricaLagos, Nigeria19 March

    TalentUp Africa uses quizzes and games, all based on specific lessons, to identify candidates’ capabilities, skill sets, and personalities. Through ...

    Onsite
  • Molcom Multi-Concepts Limited logo

    Data Scientist

    Molcom Multi-Concepts..Abuja, Nigeria22 February

    Molcom Multi-concepts Limited provides a wide range of solution-oriented services to a cross section of clients within the country and internationally. The ...

    Onsite
  • International Energy Services Limited (IESL) logo

    Senior Azure Data Engineer 

    International Energy ..Rivers, Nigeria05 February

    International Energy Services Limited (IESL), established in 1990, is a specialist, multidisciplinary, energy services company that provides integrated, ...

    Onsite
  • Tezza Business Solutions Ltd logo

    Data Engineer

    Tezza Business Soluti..Lagos, Nigeria01 February

    Tezza”(te-zza) from the Italian word "Completezza” embodies our commitment to providing IT and Business Solutions that are comprehensive, through ...

    Onsite
  • Tezza Business Solutions Ltd logo

    AI Engineer

    Tezza Business Soluti..Lagos, Nigeria01 February

    Tezza”(te-zza) from the Italian word "Completezza” embodies our commitment to providing IT and Business Solutions that are comprehensive, through ...

    Onsite
  • NewGlobe logo

    Senior Business Intelligence Engineer

    NewGlobeLagos, Nigeria26 January

    NewGlobe supports visionary governments to transform public education systems, the cornerstone of a prosperous, equitable, and peaceful society. With a ...

    Onsite
  • Yassir logo

    Data & AI Engineering Manager

    YassirLagos, Nigeria22 January

    Yassir is the leading super App for on demand and payment services in the Maghreb region set to changing the way daily services are provided. It currently ...

    Remote

What is Apache Spark?

Apache Spark (Spark) is an open-source data-processing engine for large data sets. It is designed to deliver the computational speed, scalability, and programmability required for Big Data—specifically for streaming data, graph data, machine learning, and artificial intelligence (AI) applications.

Spark's analytics engine processes data 10 to 100 times faster than alternatives. It scales by distributing processing work across large clusters of computers, with built-in parallelism and fault tolerance. It even includes APIs for programming languages that are popular among data analysts and data scientists, including Scala, Java, Python, and R.

Apache Spark is often compared to Apache Hadoop, and specifically to MapReduce, Hadoop’s native data-processing component. The chief difference between Spark and MapReduce is that Spark processes and keeps the data in memory for subsequent steps—without writing to or reading from disk—which results in dramatically faster processing speeds.

Apache Spark Libraries 

Spark has various libraries that extend the capabilities to machine learning, artificial intelligence (AI), and stream processing.

Apache Spark MLlib

One of the critical capabilities of Apache Spark is the machine learning abilities available in the Spark MLlib. The Apache Spark MLlib provides an out-of-the-box solution for doing classification and regression, collaborative filtering, clustering, distributed linear algebra, decision trees, random forests, gradient-boosted trees, frequent pattern mining, evaluation metrics, and statistics. The capabilities of the MLlib, combined with the various data types Spark can handle, make Apache Spark an indispensable Big Data tool.

Spark GraphX

In addition to having API capabilities, Spark has Spark GraphX, a new addition to Spark designed to solve graph problems. GraphX is a graph abstraction that extends RDDs for graphs and graph-parallel computation. Spark GraphX integrates with graph databases that store interconnectivity information or webs of connection information, like that of a social network.

Spark Streaming

Spark Streaming is an extension of the core Spark API that enables scalable, fault-tolerant processing of live data streams. As Spark Streaming processes data, it can deliver data to file systems, databases, and live dashboards for real-time streaming analytics with Spark's machine learning and graph-processing algorithms. Built on the Spark SQL engine, Spark Streaming also allows for incremental batch processing that results in faster processing of streamed data.

How Apache Spark Works

Apache Spark has a hierarchical master/slave architecture. The Spark Driver is the master node that controls the cluster manager, which manages the worker (slave) nodes and delivers data results to the application client.

Based on the application code, Spark Driver generates the SparkContext, which works with the cluster manager—Spark’s Standalone Cluster Manager or other cluster managers like Hadoop YARN, Kubernetes, or Mesos— to distribute and monitor execution across the nodes. It also creates Resilient Distributed Datasets (RDDs), which are the key to Spark’s remarkable processing speed.