https://github.com/vrnvu/batch-connector
efficient parallel batch connector. queries http resources and streams them down in batches into postgres.
https://github.com/vrnvu/batch-connector
connector go pipeline postgresql
Last synced: 3 months ago
JSON representation
efficient parallel batch connector. queries http resources and streams them down in batches into postgres.
- Host: GitHub
- URL: https://github.com/vrnvu/batch-connector
- Owner: vrnvu
- Created: 2021-08-04T08:27:44.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-04T09:14:29.000Z (almost 5 years ago)
- Last Synced: 2026-04-15T12:39:51.881Z (3 months ago)
- Topics: connector, go, pipeline, postgresql
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# batch-connector
## Getting started
Run a local docker container with psql:
```
docker run -d --rm \
-e POSTGRES_HOST_AUTH_METHOD=trust -e POSTGRES_DB=dbname \
-p 5432:5432 --name postgres postgres:12.3-alpine
```
Connect to the running container and create a table manually:
```
docker exec -it postgres psql -U postgres -d dbname
```