dbcrossbar
: Copy tabular data between databases, CSV files and cloud storagedbcrossbar
moves large data sets between different databases and storage formats.
Some examples:
```sh
dbcrossbar cp \ --if-exists=overwrite \ --schema=postgres-sql:mytable.sql \ csv:mytable.csv \ 'postgres://postgres@127.0.0.1:5432/postgres#my_table'
dbcrossbar cp \ --if-exists=upsert-on:id \ --temporary=gs://$GSTEMPBUCKET \ --temporary=bigquery:$GCLOUDPROJECT:tempdataset \ 'postgres://postgres@127.0.0.1:5432/postgres#mytable' \ bigquery:$GCLOUDPROJECT:mydataset.mytable ```
It can also convert between table schema formats, including PostgreSQL CREATE TABLE
statements and BigQuery JSON schemas:
```sh
CREATE TABLE
statement to a BigQuery JSON schema.dbcrossbar schema conv postgres-sql:mytable.sql bigquery-schema:mytable.json
CREATE TABLE
.dbcrossbar schema conv csv:data.csv postgres-sql:schema.sql ```
For more information, see the documentation.
For more instructions about building dbcrossbar
, running tests, and contributing code, see CONTRIBUTING.md.
We require nightly Rust. We lock a specific version of nightly Rust using the rust-toolchain
file. If you want to update this, take a look at Rustup components history and choose the newest version with support for rls
, clippy
and rustfmt
.
You can run the regular test suite with cargo test
, but to run the full integration tests, you'll need to do the following:
```sh
docker run --name postgres -e POSTGRESPASSWORD= -p 5432:5432 -d mdillon/postgis createdb -h localhost -U postgres -w dbcrossbartest export POSTGRESTESTURL=postgres://postgres:@localhost:5432/dbcrossbartest echo "create extension if not exists postgis;" | psql $POSTGRESTESTURL echo "create extension if not exists citext;" | psql $POSTGRESTESTURL echo "create schema if not exists testme1;" | psql $POSTGRESTEST_URL
export GSTESTURL=gs://$MYGSTESTBUCKET/dbcrossbar/ export BQTESTDATASET=$MYBQROOT:test export S3TESTURL=s3://$MTS3TESTBUCKET/dbcrossbar/
gcloud config unset project
export REDSHIFTTESTURL=redshift://user:pass@server:port/db export REDSHIFTTESTIAMROLE=$MYIAMROLE export REDSHIFTTESTREGIION=$MYAWS_REGION
export AWSACCESSKEYID=... AWSSECRETACCESSKEY=... export BIGMLUSERNAME=... BIGMLAPI_KEY=...
env RUSTBACKTRACE=1 RUSTLOG=warn,dbcrossbarlib=debug,dbcrossbar=debug \ cargo test --all -- --ignored --nocapture ```
Licensed under either of:
...at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above without any additional terms or conditions.
dbcrossbar
depends on a variety of third-party libraries, each with their own copyright and license. We have configured a deny.toml
file that currently attempts to restrict our dependencies to MIT, Apache-2.0, BSD-3-Clause, BSD-2-Clause, CC0-1.0, ISC, OpenSSL and Zlib licenses, with a single MPL-2.0 dependency. But please verify the deny.toml
file (and individual dependencies) to be certain, because details may change in the future. Each of these licenses imposes certain obligations on redistribution.