gpbackup and gprestore are Go utilities for performing backups and restores of a Greenplum Database. They are still currently in active development.
gpbackup requires Go version 1.8 or higher. Follow the directions here to get the language set up.
go get github.com/greenplum-db/gpbackupThis will place the code in $GOPATH/github.com/greenplum-db/gpbackup.
cd into the gpbackup directory and run
make depend
make buildThis will put the gpbackup and gprestore binaries in $HOME/go/bin
make build_linux and make build_mac are for cross compiling between macOS and Linux
The basic command for gpbackup is
gpbackup --dbname <your_db_name>The basic command for gprestore is
gprestore --timestamp <YYYYMMDDHHMMSS>Run --help with either command for a complete list of options.
To run all tests (unit, integration, and linters), use
make testTo run only unit tests, use
make unitTo run only integration tests (which require a running GPDB instance), use
make integrationWe provide the following targets to help developers ensure their code fits Go standard formatting guidelines.
To run a linting tool that checks for basic coding errors, use
make lintThis target runs gometalinter.
Note: The lint target will fail if code is not formatted properly.
To automatically format your code and add/remove imports, use
make formatThis target runs goimports and gofmt.
We will only accept code that has been formatted using this target or an equaivalent gofmt call.
To remove the compiled binaries and other generated files, run
make cleanThis repository has several different packages:
Functions that are directly responsible for performing backup operations.
This package is organized by backup section:
- global
- predata
- data
- postdata
and object type:
- relations: sequences, regular tables, and views
- externals: external protocols and external tables
- types: shell, base, composite, and enum types
- functions: functions, aggregates, and casts
- general: all other objects
There is also a backup_test package under the backup directory for unit tests that pertain to backup code.
Functions that are directly responsible for performing restore operations.
Functions and structs that are used by both the backup and restore packages. This includes operations such as database access, input parsing, and logging.
Integration tests run against a Greenplum Database such as queries against the catalog and SQL generated by gpbackup.
Functions and structs that are used for testing.
We accept contributions via Github Pull requests only.
Follow the steps below to contribute to gpbackup:
- Fork the project’s repository.
- Run
go get github/com/greenplum-db/gpbackupand add your fork as a remote. - Create your own feature branch (e.g.
git checkout -b gpbackup_branch) and make changes on this branch. - Run
make formatandmake testin your feature branch and ensure they are successful. - Push your local branch to the fork (e.g.
git push <your_fork> gpbackup_branch) and submit a pull request.
Your contribution will be analyzed for product fit and engineering quality prior to merging. Note: All contributions must be sent using GitHub Pull Requests.
Your pull request is much more likely to be accepted if it is small and focused with a clear message that conveys the intent of your change.
Overall we follow GPDB's comprehensive contribution policy. Please refer to it here for details.