Need advice about which tool to choose?Ask the StackShare community!

Serverless

1.3K
1.2K
+ 1
26
Apache Spark

2.9K
3.5K
+ 1
140
Add tool

Apache Spark vs Serverless: What are the differences?

Introduction:

Apache Spark and Serverless are two popular technologies used for big data processing and analytics. Although they both provide solutions for handling large datasets, there are key differences between them. In this article, we will discuss the six main differences between Apache Spark and Serverless.

  1. Deployment Model: Apache Spark is typically deployed on a cluster of machines, where data is distributed and processing is done in parallel. On the other hand, Serverless technologies like AWS Lambda or Azure Functions are event-driven and allow developers to run code on demand without having to manage the underlying infrastructure.

  2. Resource Allocation: In Apache Spark, resources need to be pre-allocated and managed manually, specifying how much memory or cores should be allocated for each job. Serverless platforms, on the other hand, automatically allocate resources based on the demand, scaling up or down as needed. This allows for better resource utilization and cost optimization.

  3. Scalability: Apache Spark provides horizontal scalability, meaning it can scale by adding more machines to the cluster. Serverless platforms also provide scalability, but at the function level. Each function can scale independently based on the incoming workload, without affecting other functions.

  4. State Management: Apache Spark provides an in-memory computing model, allowing users to persist data in memory for faster processing. Serverless platforms, on the other hand, are stateless by design. They are designed to handle short-lived functions that process small units of data and do not provide built-in support for persistent state.

  5. Cost Model: Apache Spark requires the setup and management of a dedicated cluster, which may require upfront costs for hardware and infrastructure. Serverless platforms follow a pay-as-you-go pricing model, where users only pay for the actual execution time and resources used by their functions, leading to potential cost savings, especially for sporadic workloads.

  6. Flexibility: Apache Spark provides a wide range of data processing and analysis capabilities through its extensive library ecosystem. It supports batch processing, interactive queries, machine learning, and graph processing. Serverless platforms, on the other hand, are more focused on event-driven functions and are optimized for short-lived, stateless operations.

In Summary, Apache Spark and Serverless differ in their deployment model, resource allocation, scalability, state management, cost model, and flexibility. Apache Spark requires a dedicated cluster, manual resource allocation, and is capable of handling large and complex workloads. Serverless platforms are event-driven, automatically allocate resources, and are optimized for short-lived functions with lower upfront costs.

Advice on Serverless and Apache Spark
Nilesh Akhade
Technical Architect at Self Employed · | 5 upvotes · 519.3K views

We have a Kafka topic having events of type A and type B. We need to perform an inner join on both type of events using some common field (primary-key). The joined events to be inserted in Elasticsearch.

In usual cases, type A and type B events (with same key) observed to be close upto 15 minutes. But in some cases they may be far from each other, lets say 6 hours. Sometimes event of either of the types never come.

In all cases, we should be able to find joined events instantly after they are joined and not-joined events within 15 minutes.

See more
Replies (2)
Recommends
on
ElasticsearchElasticsearch

The first solution that came to me is to use upsert to update ElasticSearch:

  1. Use the primary-key as ES document id
  2. Upsert the records to ES as soon as you receive them. As you are using upsert, the 2nd record of the same primary-key will not overwrite the 1st one, but will be merged with it.

Cons: The load on ES will be higher, due to upsert.

To use Flink:

  1. Create a KeyedDataStream by the primary-key
  2. In the ProcessFunction, save the first record in a State. At the same time, create a Timer for 15 minutes in the future
  3. When the 2nd record comes, read the 1st record from the State, merge those two, and send out the result, and clear the State and the Timer if it has not fired
  4. When the Timer fires, read the 1st record from the State and send out as the output record.
  5. Have a 2nd Timer of 6 hours (or more) if you are not using Windowing to clean up the State

Pro: if you have already having Flink ingesting this stream. Otherwise, I would just go with the 1st solution.

See more
Akshaya Rawat
Senior Specialist Platform at Publicis Sapient · | 3 upvotes · 363.5K views
Recommends
on
Apache SparkApache Spark

Please refer "Structured Streaming" feature of Spark. Refer "Stream - Stream Join" at https://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#stream-stream-joins . In short you need to specify "Define watermark delays on both inputs" and "Define a constraint on time across the two inputs"

See more
Decisions about Serverless and Apache Spark

When adding a new feature to Checkly rearchitecting some older piece, I tend to pick Heroku for rolling it out. But not always, because sometimes I pick AWS Lambda . The short story:

  • Developer Experience trumps everything.
  • AWS Lambda is cheap. Up to a limit though. This impact not only your wallet.
  • If you need geographic spread, AWS is lonely at the top.
The setup

Recently, I was doing a brainstorm at a startup here in Berlin on the future of their infrastructure. They were ready to move on from their initial, almost 100% Ec2 + Chef based setup. Everything was on the table. But we crossed out a lot quite quickly:

  • Pure, uncut, self hosted Kubernetes — way too much complexity
  • Managed Kubernetes in various flavors — still too much complexity
  • Zeit — Maybe, but no Docker support
  • Elastic Beanstalk — Maybe, bit old but does the job
  • Heroku
  • Lambda

It became clear a mix of PaaS and FaaS was the way to go. What a surprise! That is exactly what I use for Checkly! But when do you pick which model?

I chopped that question up into the following categories:

  • Developer Experience / DX 🤓
  • Ops Experience / OX 🐂 (?)
  • Cost 💵
  • Lock in 🔐

Read the full post linked below for all details

See more
Get Advice from developers at your company using StackShare Enterprise. Sign up for StackShare Enterprise.
Learn More
Pros of Serverless
Pros of Apache Spark
  • 14
    API integration
  • 7
    Supports cloud functions for Google, Azure, and IBM
  • 3
    Lower cost
  • 1
    Auto scale
  • 1
    Openwhisk
  • 61
    Open-source
  • 48
    Fast and Flexible
  • 8
    One platform for every big data problem
  • 8
    Great for distributed SQL like applications
  • 6
    Easy to install and to use
  • 3
    Works well for most Datascience usecases
  • 2
    Interactive Query
  • 2
    Machine learning libratimery, Streaming in real
  • 2
    In memory Computation

Sign up to add or upvote prosMake informed product decisions

Cons of Serverless
Cons of Apache Spark
    Be the first to leave a con
    • 4
      Speed

    Sign up to add or upvote consMake informed product decisions

    What is Serverless?

    Build applications comprised of microservices that run in response to events, auto-scale for you, and only charge you when they run. This lowers the total cost of maintaining your apps, enabling you to build more logic, faster. The Framework uses new event-driven compute services, like AWS Lambda, Google CloudFunctions, and more.

    What is Apache Spark?

    Spark is a fast and general processing engine compatible with Hadoop data. It can run in Hadoop clusters through YARN or Spark's standalone mode, and it can process data in HDFS, HBase, Cassandra, Hive, and any Hadoop InputFormat. It is designed to perform both batch processing (similar to MapReduce) and new workloads like streaming, interactive queries, and machine learning.

    Need advice about which tool to choose?Ask the StackShare community!

    What companies use Serverless?
    What companies use Apache Spark?
    See which teams inside your own company are using Serverless or Apache Spark.
    Sign up for StackShare EnterpriseLearn More

    Sign up to get full access to all the companiesMake informed product decisions

    What tools integrate with Serverless?
    What tools integrate with Apache Spark?

    Sign up to get full access to all the tool integrationsMake informed product decisions

    Blog Posts

    Mar 24 2021 at 12:57PM

    Pinterest

    GitJenkinsKafka+7
    3
    2140
    MySQLKafkaApache Spark+6
    2
    2004
    Aug 28 2019 at 3:10AM

    Segment

    PythonJavaAmazon S3+16
    7
    2557
    What are some alternatives to Serverless and Apache Spark?
    AWS Lambda
    AWS Lambda is a compute service that runs your code in response to events and automatically manages the underlying compute resources for you. You can use AWS Lambda to extend other AWS services with custom logic, or create your own back-end services that operate at AWS scale, performance, and security.
    Terraform
    With Terraform, you describe your complete infrastructure as code, even as it spans multiple service providers. Your servers may come from AWS, your DNS may come from CloudFlare, and your database may come from Heroku. Terraform will build all these resources across all these providers in parallel.
    Zappa
    Zappa makes it super easy to deploy all Python WSGI applications on AWS Lambda + API Gateway. Think of it as "serverless" web hosting for your Python web apps. That means infinite scaling, zero downtime, zero maintenance - and at a fraction of the cost of your current deployments!
    Kubernetes
    Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions.
    Azure Functions
    Azure Functions is an event driven, compute-on-demand experience that extends the existing Azure application platform with capabilities to implement code triggered by events occurring in virtually any Azure or 3rd party service as well as on-premises systems.
    See all alternatives