https://github.com/precog/quasar-destination-postgres
Quasar plugin providing the ability to push results into a Postgres database
https://github.com/precog/quasar-destination-postgres
Last synced: 6 months ago
JSON representation
Quasar plugin providing the ability to push results into a Postgres database
- Host: GitHub
- URL: https://github.com/precog/quasar-destination-postgres
- Owner: precog
- Created: 2019-09-18T15:48:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-12T20:27:25.000Z (about 4 years ago)
- Last Synced: 2024-04-15T03:19:09.628Z (over 2 years ago)
- Language: Scala
- Size: 380 KB
- Stars: 0
- Watchers: 7
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quasar-destination-postgres [](https://discord.gg/QNjwCg6)
## Usage
```sbt
libraryDependencies += "com.precog" %% "quasar-destination-postgres" %
```
## Configuration
```json
{
"connectionUri": String
[, "schema": String]
}
```
* `connectionUri` (REQUIRED): A Postgres [connection URL](https://jdbc.postgresql.org/documentation/head/connect.html) **without the leading `jdbc:`**. Example `postgresql://localhost:5432/db?user=alice&password=secret`.
* `schema` (OPTIONAL): The name of the schema to use for all database objects, uses the server default if omitted.