@goodwaygroup/redshift-ddl v0.1.1
@goodwaygroup/redshift-ddl
This module will query a Amazon Redshift database to produce information about it's DDL.
CLI Usage
$ redshift-ddl load > /tmp/ddl.json
$ redshift-ddl load --connection-string=postgres://localhost:5439/thedb > /tmp/ddl.json
$ PGCONNECTIONSTRING=postgres://localhost:5439/thedb redshift-ddl load > /tmp/ddl.jsonCLI Help
$ redshift-ddl --help
Usage: redshift-ddl [options] [command]
Options:
-V, --version output the version number
-v, --verbose verbose debug output
-h, --help output usage information
Commands:
load [options] load the ddl
$ redshift-ddl load --help
Usage: redshift-ddl load [options]
load the ddl
Options:
-c, --connection-string <connection> connection string, defaults to PGCONNECTIONSTRING
-h, --help output usage informationLibrary Usage
const { loadDDL, processDDL } = require('@goodwaygroup/redshift-ddl');
const loadedDDL = await loadDDL();
const processedDDL = await processDDL(loadedDDL);
console.log(processedDDL);Configuration Options
This module uses pg and by default you can use the environment variables it reads to config how the connection is made to Redshift.
Connection Environment Variables
# Redshift connection information
PGHOST=localhost
PGUSER=process.env.USER
PGDATABASE=process.env.USER
PGPASSWORD=null
PGPORT=5439
# Redshift connection string (preferred if defined)
PGCONNECTIONSTRING=postgresql://dbuser:secretpassword@database.server.com:5439/mydbExisting Connection
If you already have a pg.Pool or pg.Client created, you can pass that to loadDDL.
const ddl = await loadDDL({ conn: alreadyExistingConn });Make a new Connection with Explicit Configuration
This module exposes convenience methods to create instances of either pg.Pool or pg.Client.
const { createClient, createPool } = require('@goodwaygroup/redshift-ddl');
// Client
const connClient = createClient({
options: {
statement_timeout: 15000
}
});
// Pool
const connPool = createClient({
options: {
statement_timeout: 15000,
connectionTimeoutMillis: 1000,
max: 4
}
});Docs
Processed DDL
Using processDDL with the result to loadDDL will produce a single object organized by schema. Each schema will contain all of it's tables, views, udfs, and external tables. This is the object returned by the command line tool from this module.
Running Tests
To run tests, just run the following:
npm testAll commits are tested on CircleCI
Linting
To run eslint:
npm run lintTo auto-resolve:
npm run lint:fixContributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Versioning
We use milestones and npm version to bump versions. We also employ auto-changelog to manage the CHANGELOG.md. For the versions available, see the tags on this repository.
To initiate a version change:
npm versionAuthors
- Julian Lannigan - Initial work - @mrlannigan
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE file for details
