https://github.com/1ambda/query-gateway
Gateway for Query Engines
https://github.com/1ambda/query-gateway
gateway proxy trino
Last synced: 7 months ago
JSON representation
Gateway for Query Engines
- Host: GitHub
- URL: https://github.com/1ambda/query-gateway
- Owner: 1ambda
- Created: 2023-08-12T11:09:18.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T13:41:21.000Z (over 1 year ago)
- Last Synced: 2025-01-19T10:25:41.631Z (9 months ago)
- Topics: gateway, proxy, trino
- Language: Java
- Homepage:
- Size: 77.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Query Gateway
## Supported Backends
- [ ] Trino
## Features
- [ ] Query History
- [ ] Query Routing
- [ ] Configuration Reload## Development
* JDK 17+
```
$ npm install -g local-ssl-proxy;# SSL for Gateway Proxy Application
$ local-ssl-proxy --source 9090 --target 8080
$ TRINO_PASSWORD=adminpassword trino --server https://localhost:8081 --insecure --user admin --password;# SSL for Individual Trino Cluster
$ local-ssl-proxy --source 9090 --target 8889
$ local-ssl-proxy --source 9091 --target 8890
$ TRINO_PASSWORD=adminpassword trino --server https://localhost:9090 --insecure --user admin --password;
$ TRINO_PASSWORD=adminpassword trino --server https://localhost:9091 --insecure --user admin --password;
```