This tool provides an interface to send PartiQL statements to Amazon Quantum Ledger Database (QLDB). This tool is not intended to be incorporated into an application or adopted for production purposes. The objective of the tool is to give developers, devops, database administrators, and anyone else interested the opportunity for rapid experimentation with QLDB and PartiQL.
See Accessing Amazon QLDB for information on connecting to AWS.
The shell requires Python 3.4 or later. Please see the link below for more detail to install Python:
Install the QLDB Shell using pip:
pip3 install qldbshell
The shell can then be invoked by using the following command:
$ qldbshell --region <region_code> --ledger <ledger_name>
An example region code that can be used is us-east-1.
The currently avaiable regions are addressed in the QLDB General Reference page.
By default, the shell will use the credentials specified as environment variables and then in the default profile mentioned in ~/.aws/credentials/
(default location set in the AWS_SHARED_CREDENTIALS_FILE environment variable) and then the default profile in ~/.aws/config
(default location set in AWS_CONFIG_FILE environment variable).
Various optional arguments can be added to override the profile, endpoints, and region used. To view the arguments, execute the following:
$ qldbshell --help
Assuming that the ledger, "test-ledger" has already been created:
$ qldbshell --region us-east-1 --ledger test-ledger
qldbshell> CREATE TABLE TestTable
qldbshell> INSERT INTO TestTable `{"Name": "John Doe"}`
qldbshell> SELECT * FROM TestTable
qldbshell> exit
We use backticks in the example above since we use are using Ion literals. For more on querying Ion literals, go here. Each statement except exit is considered as a transaction.
- Amazon QLDB accepts and stores Amazon ION Documents. Amazon Ion is a richly-typed, self-describing, hierarchical data serialization format offering interchangeable binary and text representations. For more information read the ION docs.
- Amazon QLDB supports the PartiQL query language. PartiQL provides SQL-compatible query access across multiple data stores containing structured data, semistructured data, and nested data. For more information read the PartiQL docs.
- We use backticks in our example since we use are using Ion literals. For more on querying Ion with PartiQL, go here.
Clone the repository using:
git clone --recursive https://github.com/awslabs/amazon-qldb-shell.git
After cloning the repository, activate a virtual environment and install the package by running:
$ virtualenv venv
...
$ . venv/bin/activate
$ pip3 install -r requirements.txt
$ pip3 install -e .
This tool is licensed under the Apache 2.0 License.