Elasticsearch VS bleve

Compare Elasticsearch vs bleve and see what are their differences.

Elasticsearch

Free and Open, Distributed, RESTful Search Engine (by elastic)

bleve

A modern text/numeric/geo-spatial/vector indexing library for go (by blevesearch)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Elasticsearch bleve
91 13
67,531 9,655
1.1% 1.6%
10.0 7.4
4 days ago 5 days ago
Java Go
GNU General Public License v3.0 or later Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Elasticsearch

Posts with mentions or reviews of Elasticsearch. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-18.

bleve

Posts with mentions or reviews of bleve. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-04.
  • Hermes v1.7
    3 projects | /r/golang | 4 Jun 2023
    I don't have the answer to that, but the project has been alive for many years. Seems maybe you should find the answer since you are developing a competing solution? Also it might be a good reference project for solving similar problems to yours. They do have bench tests you could play with https://github.com/blevesearch/bleve/blob/master/query_bench_test.go
  • Seeking a free full text search solution for large data with progress display
    5 projects | /r/golang | 26 May 2023
    I know of https://github.com/blevesearch/bleve and I think there was another project for full text search that I can't find now.
  • Any Full Text Search library for json data?
    13 projects | /r/golang | 1 Jan 2023
  • An alternative to Elasticsearch that runs on a few MBs of RAM
    65 projects | news.ycombinator.com | 24 Oct 2022
    I would be interested in such a testbed. I would also like to know how Bleve Search (https://github.com/blevesearch/bleve) turns out.

    I have for many years now a small search engine project in my free-time pipeline, but I'm before crawling even and I intend to sit for searching part after some of that.

  • What is the coolest Go open source projects you have seen?
    84 projects | /r/golang | 15 Sep 2022
  • BetterCache 2.0 (has full text search/remove, etc.)
    5 projects | /r/golang | 2 Sep 2022
    Haha. Seriously I canโ€™t tell the difference between these libraries https://github.com/blevesearch/bleve
  • I want to dive into how to make search engines
    16 projects | news.ycombinator.com | 25 Aug 2022
    I've never worked on a project that encompasses as many computer science algorithms as a search engine. There are a lot of topics you can lookup in "Information Storage and Retrieval":

    - Tries (patricia, radix, etc...)

    - Trees (b-trees, b+trees, merkle trees, log-structured merge-tree, etc..)

    - Consensus (raft, paxos, etc..)

    - Block storage (disk block size optimizations, mmap files, delta storage, etc..)

    - Probabilistic filters (hyperloloog, bloom filters, etc...)

    - Binary Search (sstables, sorted inverted indexes, roaring bitmaps)

    - Ranking (pagerank, tf/idf, bm25, etc...)

    - NLP (stemming, POS tagging, subject identification, sentiment analysis etc...)

    - HTML (document parsing/lexing)

    - Images (exif extraction, removal, resizing / proxying, etc...)

    - Queues (SQS, NATS, Apollo, etc...)

    - Clustering (k-means, density, hierarchical, gaussian distributions, etc...)

    - Rate limiting (leaky bucket, windowed, etc...)

    - Compression

    - Applied linear algebra

    - Text processing (unicode-normalization, slugify, sanitation, lossless and lossy hashing like metaphone and document fingerprinting)

    - etc...

    I'm sure there is plenty more I've missed. There are lots of generic structures involved like hashes, linked-lists, skip-lists, heaps and priority queues and this is just to get 2000's level basic tech.

    - https://github.com/quickwit-oss/tantivy

    - https://github.com/valeriansaliou/sonic

    - https://github.com/mosuka/phalanx

    - https://github.com/meilisearch/MeiliSearch

    - https://github.com/blevesearch/bleve

    - https://github.com/thomasjungblut/go-sstables

    A lot of people new to this space mistakenly think you can just throw elastic search or postgres fulltext search in front of terabytes of records and have something decent. The problem is that search with good rankings often requires custom storage so calculations can be sharded among multiple nodes and you can do layered ranking without passing huge blobs of results between systems.

  • Why Writing Your Own Search Engine Is Hard (2004)
    5 projects | news.ycombinator.com | 23 Jul 2022
    For those curious, I'm on my 3rd search engine as I keep discovering new methods of compactly and efficiently processing and querying results.

    There isn't a one-size-fits all approach, but I've never worked on a project that encompasses as many computer science algorithms as a search engine.

    - Tries (patricia, radix, etc...)

    - Trees (b-trees, b+trees, merkle trees, log-structured merge-tree, etc..)

    - Consensus (raft, paxos, etc..)

    - Block storage (disk block size optimizations, mmap files, delta storage, etc..)

    - Probabilistic filters (hyperloloog, bloom filters, etc...)

    - Binary Search (sstables, sorted inverted indexes)

    - Ranking (pagerank, tf/idf, bm25, etc...)

    - NLP (stemming, POS tagging, subject identification, etc...)

    - HTML (document parsing/lexing)

    - Images (exif extraction, removal, resizing / proxying, etc...)

    - Queues (SQS, NATS, Apollo, etc...)

    - Clustering (k-means, density, hierarchical, gaussian distributions, etc...)

    - Rate limiting (leaky bucket, windowed, etc...)

    - text processing (unicode-normalization, slugify, sanitation, lossless and lossy hashing like metaphone and document fingerprinting)

    - etc...

    I'm sure there is plenty more I've missed. There are lots of generic structures involved like hashes, linked-lists, skip-lists, heaps and priority queues and this is just to get 2000's level basic tech.

    - https://github.com/quickwit-oss/tantivy

    - https://github.com/valeriansaliou/sonic

    - https://github.com/mosuka/phalanx

    - https://github.com/meilisearch/MeiliSearch

    - https://github.com/blevesearch/bleve

    A lot of people new to this space mistakenly think you can just throw elastic search or postgres fulltext search in front of terabytes of records and have something decent. That might work for something small like a curated collection of a few hundred sites.

  • Mattermost โ€“ open-source platform for secure collaboration
    6 projects | news.ycombinator.com | 24 Jun 2022
    Search in SQL databases is a tough beast to get it right. And given that we support MySQL and Postgres both, it gets even harder to support quirks of both of them.

    In enterprise editions, the only addition is Elasticsearch. But in our open-source version, we do have support for https://github.com/blevesearch/bleve. Although, it's in beta, we have a lot of customers using it.

    I am wondering if you have tried using it and didn't like it?

  • A Database for 2022
    13 projects | news.ycombinator.com | 1 Apr 2022

What are some alternatives?

When comparing Elasticsearch and bleve you can also consider the following projects:

OpenSearch - ๐Ÿ”Ž Open source distributed and RESTful search engine.

elastic - Deprecated: Use the official Elasticsearch client for Go at https://github.com/elastic/go-elasticsearch

Apache Superset - Apache Superset is a Data Visualization and Data Exploration Platform [Moved to: https://github.com/apache/superset]

goriak - goriak - Go language driver for Riak KV

pgvector - Open-source vector similarity search for Postgres

elasticsql - convert sql to elasticsearch DSL in golang(go)

Whoosh

goes

MeiliSearch - A lightning-fast search API that fits effortlessly into your apps, websites, and workflow

elastigo - A Go (golang) based Elasticsearch client library.

elasticsearch-dsl-py - High level Python client for Elasticsearch

skizze - A probabilistic data structure service and storage