Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sintef/bigquery-postgresql-wire-proxy
A PostgreSQL wire protocol proxy server for BigQuery.
https://github.com/sintef/bigquery-postgresql-wire-proxy
bigquery postgresql proxy
Last synced: about 2 months ago
JSON representation
A PostgreSQL wire protocol proxy server for BigQuery.
- Host: GitHub
- URL: https://github.com/sintef/bigquery-postgresql-wire-proxy
- Owner: SINTEF
- License: apache-2.0
- Created: 2024-03-01T07:59:20.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T13:01:26.000Z (5 months ago)
- Last Synced: 2024-08-10T12:52:36.557Z (5 months ago)
- Topics: bigquery, postgresql, proxy
- Language: Rust
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BigQuery PostgreSQL Wire Proxy
A proof of concept PostgreSQL wire protocol proxy server for BigQuery.
In case you want to query Google BigQuery, but using a PostgreSQL client. The PostgreSQL wire protocol is quite permissive so you can write BigQuery SQL and get the results back.
Only `SELECT` statements are supported.
Everything is done in memory, so it's not suitable for large result sets. And everything is serialized to strings.
This is very much a proof of concept and not suitable for production use.
As the [LICENSE](LICENSE) says, this is provided as-is with no warranty or support.
Thanks for the [gcp-bigquery-client](https://crates.io/crates/gcp-bigquery-client) and [pgwire](https://crates.io/crates/pgwire) crates for making this possible.