Optimizing Nested Loop joins on YugabyteDB with jOOQ

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • yugabyte-db

    YugabyteDB - the cloud native distributed SQL database for mission-critical applications.

  • Result result = ctx .select() .from(p) .join(d).on(p.PRODUCT_ID.eq(d.PRODUCT_ID)) .where(p.UNIT_PRICE.gt(50.f)) // workaround: add a subquery returning a list of PRODUCT_ID: .and( d.PRODUCT_ID.in ( ctx.select(p.PRODUCT_ID).from(p) .where(p.UNIT_PRICE.gt(50.f)) .fetch(p.PRODUCT_ID) ) ) // this workaround will not be needed when https://github.com/yugabyte/yugabyte-db/issues/4903 is solved .fetch();

  • jOOQ

    jOOQ is the best way to write SQL in Java

  • If you use jOOQ, everything about SQL becomes easier to code and the barrier between dynamic and static SQL is small as all are typesafe.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts