An open API service indexing awesome lists of open source software.

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.

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
```