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

Solr

774
642
+ 1
126
Apache Spark

2.9K
3.5K
+ 1
140
Add tool

Apache Spark vs Solr: What are the differences?

Introduction:

Apache Spark and Solr are two popular technologies used in big data processing and analytics. While both technologies serve different purposes, they have some key differences that set them apart.

  1. Data Processing Paradigm: Apache Spark is an open-source cluster computing framework that focuses on providing a unified analytics engine for big data processing. It offers a distributed processing model and supports both batch and stream processing. On the other hand, Solr is an open-source search platform that is built on top of Apache Lucene. Solr is primarily designed for full-text search and does not support general-purpose data processing like Spark.

  2. Data Storage: Apache Spark utilizes a distributed file system (HDFS) or distributed data warehouses (e.g., Apache HBase, Apache Cassandra) to store its data. It can process and analyze data from various sources, including Hadoop Distributed File System (HDFS), Apache Cassandra, Apache HBase, etc. On the contrary, Solr uses its own built-in NoSQL database called Apache Lucene to store and retrieve data. It is optimized for search operations and provides advanced indexing and querying capabilities.

  3. Querying Capabilities: Apache Spark provides a rich set of APIs and libraries for data analysis, machine learning, and graph processing. It supports complex SQL queries, data frames, and graph algorithms. Additionally, Spark's machine learning library (MLlib) offers a wide range of algorithms and tools for building and training models. Solr, on the other hand, offers powerful full-text search capabilities with advanced querying features like faceted search, filtering, highlighting, and spell suggestions. It excels in text search and retrieval tasks.

  4. Real-time Processing vs Batch Processing: Apache Spark is designed to process and analyze data in real-time or near real-time. It supports stream processing frameworks like Apache Kafka, allowing developers to process data as it arrives. This makes Spark suitable for applications requiring real-time analytics or continuous data processing. On the contrary, Solr is more focused on batch processing and indexing. Although it has some support for near-real-time indexing, it is not as efficient as Spark in processing data streams.

  5. Scalability and Fault-Tolerance: Apache Spark is designed to handle large-scale data processing and offers built-in mechanisms for fault tolerance and data parallelism. It can distribute computing tasks across a cluster of machines, providing horizontal scalability. Spark's Resilient Distributed Datasets (RDDs) allow fault-tolerant distributed processing. In contrast, Solr also supports distributed indexing and searching, but it is primarily optimized for single-node deployments. Scaling Solr requires setting up multiple instances and configuring load balancing.

  6. Ecosystem and Integration: Apache Spark has a vibrant and active community that has developed a rich ecosystem of libraries and tools. It integrates well with other big data technologies like Apache Hadoop, Apache HBase, Apache Kafka, etc. It also provides support for various programming languages like Python, Java, Scala, and R. On the other hand, Solr integrates well with the Apache Lucene ecosystem and can be easily used with other components like Apache ZooKeeper. However, its ecosystem is not as extensive as Spark's.

In Summary, Apache Spark is a powerful and versatile analytics engine that supports both batch and real-time processing, while Solr is a search platform optimized for full-text search and indexing.

Advice on Solr and Apache Spark
Nilesh Akhade
Technical Architect at Self Employed · | 5 upvotes · 519.8K 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 · 364K 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
Get Advice from developers at your company using StackShare Enterprise. Sign up for StackShare Enterprise.
Learn More
Pros of Solr
Pros of Apache Spark
  • 35
    Powerful
  • 22
    Indexing and searching
  • 20
    Scalable
  • 19
    Customizable
  • 13
    Enterprise Ready
  • 5
    Restful
  • 5
    Apache Software Foundation
  • 4
    Great Search engine
  • 2
    Security built-in
  • 1
    Easy Operating
  • 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 Solr
Cons of Apache Spark
    Be the first to leave a con
    • 4
      Speed

    Sign up to add or upvote consMake informed product decisions

    - No public GitHub repository available -

    What is Solr?

    Solr is the popular, blazing fast open source enterprise search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, near real-time indexing, dynamic clustering, database integration, rich document (e.g., Word, PDF) handling, and geospatial search. Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more. Solr powers the search and navigation features of many of the world's largest internet sites.

    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 Solr?
    What companies use Apache Spark?
    See which teams inside your own company are using Solr 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 Solr?
    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
    2138
    MySQLKafkaApache Spark+6
    2
    2003
    Aug 28 2019 at 3:10AM

    Segment

    PythonJavaAmazon S3+16
    7
    2555
    What are some alternatives to Solr and Apache Spark?
    Lucene
    Lucene Core, our flagship sub-project, provides Java-based indexing and search technology, as well as spellchecking, hit highlighting and advanced analysis/tokenization capabilities.
    Algolia
    Our mission is to make you a search expert. Push data to our API to make it searchable in real time. Build your dream front end with one of our web or mobile UI libraries. Tune relevance and get analytics right from your dashboard.
    Elasticsearch
    Elasticsearch is a distributed, RESTful search and analytics engine capable of storing data and searching it in near real time. Elasticsearch, Kibana, Beats and Logstash are the Elastic Stack (sometimes called the ELK Stack).
    MongoDB
    MongoDB stores data in JSON-like documents that can vary in structure, offering a dynamic, flexible schema. MongoDB was also designed for high availability and scalability, with built-in replication and auto-sharding.
    Redis
    Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Redis provides data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs, geospatial indexes, and streams.
    See all alternatives