0.0.1 Nov 21, 2023

#20 in #dialect

Apache-2.0

27KB
437 lines

joinery: Transpile (some) of BigQuery's "Standard SQL" dialect to other databases

Current status: Preparing for a quiet public release, but not yet there. This is currently a proof of concept that runs the tests in tests/sql/, but which isn't quite ready for anything else. See ARCHITECTURE.md for an overview of the codebase. This code is less than 2 months old, and it was built quickly, so we still have some refactoring to do.

What is this?

This is an experimental tool to transpile (some) SQL code written in BigQuery's "Standard SQL" dialect into other dialects. For example, it can transform:

SELECT ARRAY(
    SELECT DISTINCT val / 2
    FROM UNNEST(arr) AS val
    WHERE MOD(val, 2) = 0
) AS arr
FROM array_select_data;

...into the Trino-compatible SQL:

SELECT ARRAY_DISTINCT(
    TRANSFORM(
        FILTER(arr, val -> MOD(val, 2) = 0),
        val -> val / 2
    )
) AS arr
FROM array_select_data

It even does type inference, which is needed for certain complex transformations! The transformation process makes some effort to preserve whitespace and comments, so the output SQL is still mostly readable.

Current status

This is very much a work in progress, though it has enough features to run a large fraction of our production workload. It supports the following databases to some degree:

  • Trino: Best coverage. Easy to run locally under Docker.
    • AWS Athena 3: Mostly works, but we need to port the UDFs.
    • Presto: Try it and see?
  • Snowflake: Not bad.
  • SQLite3: Will probably be removed soon. Might be replaced with DuckDB?

If you want to run your production workloads, you will almost certainly need to contribute code. In particular, our API coverage is limited. See tests/sql/ for examples of what we support.

Design philosophy

In an ideal world, joinery would do one of two things:

  1. Translate your SQL into something that runs identically on your target database, or
  2. Report a clear error explaining why it can't.

In the real world, neither BigQuery's Standard SQL nor any of our target dialects have any kind of formal semantics, and there has been way too much empiricism and guesswork involved. But joinery has been designed to approach the ideal over time.

Installing

git clone https://github.com/faradayio/joinery.git
cd joinery
cargo install --path .

Running

joinery --help
joinery parse example_queries.csv
joinery sql-test tests/sql/

For the sql-test test format, see the test format docs.

Supported databases

SQLite3

This is the default. You don't need to do anything.

Snowflake

You can specify Snowflake using

--database snowflake://<user>@<organization>-<account>[.privatelink]/<warehouse>/<database>

You'll also need to set the SNOWFLAKE_PASSWORD environment variable.

Trino

To run under Trino, you may want to load the plugin, as described in java/trino-plugin/README.md. If you don't mind some unit test failures on FARM_FINGERPRINT, you can also just run:

docker run --name trino -d -p 8080:8080 trinodb/trino

Then you need to start a Trino shell:

docker exec -it trino trino

...and paste in the contents of ./sql/trino_compat.sql. This will provide SQL UDFs that implement a bunch of BigQ

Then you can run joinery with:

--database "trino://anyone@localhost/memory/default"

Developing

See ARCHITECTURE.md for an overview of the codebase.

Other projects of interest

If you're interested in running analytic SQL queries across multiple databases, you may also be interested in:

  • PRQL. There are a lot of languages out there that compile to SQL, but this one is my favorite. It reads as a pipeline from top to bottom, the features are clean and orthogonal, and it handles window functions. If you're starting a greenfield project, definitely take a look.
  • Logica. This is probably the most mature Datalog-to-SQL compiler, with a particular focus on BigQuery.
  • sqlglot. Transform between many different SQL dialects. Much better feature coverage than we have, though it may generate incorrect SQL in tricky cases. If you're planning on adjusting your translated queries by hand, or if you need to support a wide variety of dialects, this is probably a better choice than joinery.
  • dbt-core.
  • BigQuery Emulator. A local emulator for BigQuery. This supports a larger fraction of BigQuery features than we do.

Dependencies

~0.7–1.1MB
~26K SLoC