quine VS ldbc_snb_bi

Compare quine vs ldbc_snb_bi and see what are their differences.

quine

Quine • a streaming graph • https://quine.io • Discord: https://discord.gg/GMhd8TE4MR (by thatdot)

ldbc_snb_bi

Reference implementations for the LDBC Social Network Benchmark's Business Intelligence (BI) workload (by ldbc)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
quine ldbc_snb_bi
6 3
281 31
5.7% -
9.3 7.7
7 days ago 3 months ago
Scala Python
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.

quine

Posts with mentions or reviews of quine. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-02.
  • Create a Quine Icon Library with Python
    2 projects | dev.to | 2 May 2023
    Quine
  • Postgres: The Graph Database You Didn't Know You Had
    8 projects | news.ycombinator.com | 31 Mar 2023
    Re [5]'s asssertion under "blunders" of the diminish usecases post sql/pgq, what do you think of sometime like Quine?

    https://github.com/thatdot/quine

    Their claim to fame is progressive incremental computation - each node is an actor responding to events -- and I'm not sure how a relational db could do that and match the latencies. That usecase is pretty much pattern matching and forensics and stuff like that.

    https://docs.quine.io/core-concepts/architecture.html

  • Use Quine Graph ETL to reduce SIEM storage costs.
    1 project | dev.to | 25 Jul 2022
    Download Quine - JAR file | Docker Image | Github
  • Standing Queries: Turning Data-Driven Events into Event-Driven Data
    1 project | dev.to | 6 Jul 2022
    The first step to making a Standing Query is determining the graph pattern you want to watch for. You may have deployed Quine in your data pipeline to perform a series of tasks to isolate data, implement a specific feature, or monitor the stream to find a specific pattern in real time. In any case, Quine will implement your logic using Cypher. The recipe for this example is included in the Quine repo if you'd like to follow along.
  • Ingesting From Multiple Data Sources into Quine Streaming Graphs
    1 project | dev.to | 6 Jun 2022
    Quine is open source if you want to run this analysis for yourself. Download a precompiled version or build it yourself from the codebase (Quine Github). I published the recipe that I developed at https://quine.io/recipes. The page has instructions for downloading the CSV files and running the recipe.
  • Ingesting Internet Data into Quine Streaming Graph
    1 project | dev.to | 31 May 2022
    I welcome your feedback! Drop in to Quine Slack and let me know what you think. I'm always happy to discuss Quine or answer questions.

ldbc_snb_bi

Posts with mentions or reviews of ldbc_snb_bi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-27.
  • Demand the impossible: rigorous database benchmarking
    1 project | news.ycombinator.com | 31 Dec 2023
    Rigorous database benchmarking is indeed very difficult and time-consuming. I spent the last ~7 years working on benchmarks for graph processing systems in the Linked Data Benchmark Council (LDBC) [1], originally established in 2012 as an EU research project.

    LDBC creates TPC-style application-level database benchmarks which can be used for system-to-system comparison. We provide detailed specifications, data generators, benchmark frameworks, and multiple reference implementations. The benchmarks are implemented by vendors for their database products, and the implementations submitted to be run by independent third-party auditors to ensure their correctness and reproducibility.

    We have found that there is a market for audits for graph processing systems, albeit it is quite small: over the last 4 years, we have published 34 audited results, see e.g. [2] and [3].

    A major problem we face is that process of implementing the benchmark for a system and getting an audited result is long (and therefore expensive). Vendors spend months implementing the and tuning the benchmarks. It is also typical for the auditor to spend 50+ hours on the auditing process, which includes a lengthy code review step, setting up the system, running the experiments, testing ACID properties, writing a report, etc. The length of the process is exacerbated by the lack of standard graph query languages. This potentially necessitates the auditor to learn a new query language or programming language.

    We have tried to mitigate this problem by improving our documentation, creating more reference implementation, distributing pre-generated data sets. There are new standard graph query languages (SQL/PGQ, GQL) but their adoption is still very limited. Overall, the auditing process is quite long, which is mainly caused by the essential complexity of the problem: implementing an application-level benchmark and getting reliable results is very difficult.

    [1] https://ldbcouncil.org/introduction/

    [2] https://ldbcouncil.org/benchmarks/snb-interactive

    [3] https://ldbcouncil.org/benchmarks/snb-bi/

  • Benchgraph Backstory: The Untapped Potential
    4 projects | dev.to | 27 Apr 2023
    At first, the plan was to use only the LDBC dataset and write different queries for the dataset, but LDBC has a set of well-designed queries that were specifically prepared to stress the database. Each query targets a special scenario, also called “chock point.” Not to be mistaken, they do not have deep graph traversal doing around 100 hops, but they are definitely more complex than the ones written for the Pokec dataset. There are two sets of queries for the LDBC SNB: interactive and business intelligence. LDBC provides a reference Cypher implementation for both of these queries for Neo4j. We took those queries, tweaked the data types, and made the queries work on Memgraph. Again, to be perfectly clear, this is NOT an official implementation of an LDBC Benchmark; this goes for both interactive and business intelligence queries. The queries were used as the basis for running the benchmark.
  • Postgres: The Graph Database You Didn't Know You Had
    8 projects | news.ycombinator.com | 31 Mar 2023
    I designed and maintain several graph benchmarks in the Linked Data Benchmark Council, including workloads aimed for databases [1]. We make no restrictions on implementations, they can any query language like Cypher, SQL, etc.

    In our last benchmark aimed at analytical systems [2], we found that SQL queries using WITH RECURSIVE can work for expressing reachability and even weighted shortest path queries. However, formulating an efficient algorithm yields very complex SQL queries [3] and their execution requires a system with a sophisticated optimizer such as Umbra developed at TU Munich [4]. Industry SQL systems are not yet at this level but they may attain that sometime in the future.

    Another direction to include graph queries in SQL is the upcoming SQL/PGQ (Property Graph Queries) extension. I'm involved in a project at CWI Amsterdam to incorporate this language into DuckDB [5].

    [1] https://ldbcouncil.org/benchmarks/snb/

    [2] https://www.vldb.org/pvldb/vol16/p877-szarnyas.pdf

    [3] https://github.com/ldbc/ldbc_snb_bi/blob/main/umbra/queries/...

    [4] https://umbra-db.com/

    [5] https://www.cidrdb.org/cidr2023/slides/p66-wolde-slides.pdf

What are some alternatives?

When comparing quine and ldbc_snb_bi you can also consider the following projects:

lila-ws - Lichess' websocket server

ldbc_snb_datagen_spark - Synthetic graph generator for the LDBC Social Network Benchmark, running on Spark

AkkaGRPC - Akka gRPC

spicedb - Open Source, Google Zanzibar-inspired permissions database to enable fine-grained access control for customer applications

Scala Graph - Graph for Scala is intended to provide basic graph functionality seamlessly fitting into the Scala Collection Library. Like the well known members of scala.collection, Graph for Scala is an in-memory graph library aiming at editing and traversing graphs, finding cycles etc. in a user-friendly way.

ldbc_snb_interactive_v1_impls - Reference implementations for LDBC Social Network Benchmark's Interactive workload.

fs2-kafka - Functional Kafka Streams for Scala

materialize - The data warehouse for operational workloads.

Iteratee - Iteratees for Cats

Apache AGE - Graph database optimized for fast analysis and real-time data processing. It is provided as an extension to PostgreSQL.

Scio - A Scala API for Apache Beam and Google Cloud Dataflow.

clair - Vulnerability Static Analysis for Containers