Sign inSign up

materialize/mzcli

By materialize

Updated over 4 years ago

the materialize command prompt

Image
2

50K+

materialize/mzcli repository overview

A REPL for the Materialize Streaming Database Engine

See https://materialize.com for an introduction to Materialize.

Quick Start

|Slack| |Build Status| |PyPI| |Docker|

The easiest way to get started with mzcli with a remote materialized is to use docker::

docker run -it materialize/mzcli mzcli --help

Or you can install mzcli using pip_ or pipx_ (recommended)::

pipx install mzcli

This is a work-in-progress materialize client that does auto-completion and syntax highlighting. It is a soft fork of pgcli_, and will hopefully one day be even less of a fork from mzcli, but due to materialize's extra functionality this will be a long-lived tool for interacting with materialized.

.. image:: screenshots/pgcli.gif .. image:: screenshots/image01.png

.. _pgcli: https://www.pgcli.com/ .. _pip: https://pip.pypa.io/en/latest/installing.html .. _pipx: https://pipxproject.github.io/pipx/installation/

Finding the Latest Version

New releases of mzcli are automatically built from main and published to Docker Hub_.

.. _Docker Hub: https://hub.docker.com/repository/docker/materialize/mzcli

Usage

::

$ mzcli [database_name]

or

$ mzcli postgresql://[user[:password]@][netloc][:port][/dbname][?extra=value[&other=other-value]]

Examples:

::

$ mzcli local_database

$ mzcli postgres://amjith:[email protected]:5432/app_db?sslmode=verify-ca&sslrootcert=/myrootcert

For more details:

::

$ mzcli --help

Usage: mzcli [OPTIONS] [DBNAME] [USERNAME]

Options:
  -h, --host TEXT            Host address of the postgres database.
  -p, --port INTEGER         Port number at which the postgres instance is
                             listening.
  -U, --username TEXT        Username to connect to the postgres database.
  -u, --user TEXT            Username to connect to the postgres database.
  -W, --password             Force password prompt.
  -w, --no-password          Never prompt for password.
  --single-connection        Do not use a separate connection for completions.
  -v, --version              Version of mzcli.
  -d, --dbname TEXT          database name to connect to.
  --mzclirc FILE             Location of mzclirc file.
  -D, --dsn TEXT             Use DSN configured into the [alias_dsn] section
                             of mzclirc file.
  --list-dsn                 list of DSN configured into the [alias_dsn]
                             section of mzclirc file.
  --row-limit INTEGER        Set threshold for row limit prompt. Use 0 to
                             disable prompt.
  --less-chatty              Skip intro on startup and goodbye on exit.
  --prompt TEXT              Prompt format (Default: "\u@\h:\d> ").
  --prompt-dsn TEXT          Prompt format for connections using DSN aliases
                             (Default: "\u@\h:\d> ").
  -l, --list                 list available databases, then exit.
  --auto-vertical-output     Automatically switch to vertical output mode if
                             the result is wider than the terminal width.
  --warn [all|moderate|off]  Warn before running a destructive query.
  --help                     Show this message and exit.

mzcli also supports many of the same environment variables_ as psql for login options (e.g. PGHOST, PGPORT, PGUSER, PGPASSWORD, PGDATABASE).

The SSL-related environment variables are also supported, so if you need to connect a postgres database via ssl connection, you can set set environment like this:

::

export PGSSLMODE="verify-full"
export PGSSLCERT="/your-path-to-certs/client.crt"
export PGSSLKEY="/your-path-to-keys/client.key"
export PGSSLROOTCERT="/your-path-to-ca/ca.crt"
pgcli -h localhost -p 5432 -U username postgres

.. _environment variables: https://www.postgresql.org/docs/current/libpq-envars.html

Features

The mzcli is written using prompt_toolkit_.

  • Auto-completes as you type for SQL keywords as well as tables and columns in the database.

  • Syntax highlighting using Pygments.

  • Smart-completion (enabled by default) will suggest context-sensitive completion.

    • SELECT * FROM <tab> will only show table names.
    • SELECT * FROM users WHERE <tab> will only show column names.
  • Primitive support for psql back-slash commands.

  • Pretty prints tabular data.

.. _prompt_toolkit: https://github.com/jonathanslenders/python-prompt-toolkit .. _tabulate: https://pypi.python.org/pypi/tabulate

Config

A config file is automatically created at ~/.config/mzcli/config at first launch. See the file itself for a description of all available options.

Contributions:

While we are not mzcli, the following documentation expresses our sentiments and still correctly represents the development workflow.

If you're interested in contributing to this project, first of all I would like to extend my heartfelt gratitude. I've written a small doc to describe how to get this running in a development setup.

https://github.com/dbcli/mzcli/blob/master/DEVELOP.rst

Please feel free to file an issue if you need help, or jump in our community slack_.

.. _community slack: https://join.slack.com/t/materializecommunity/shared_invite/zt-fpfvczj5-efOE_8qvM4fWpHSvMxpKbA

.. Detailed Installation Instructions:

macOS:

The easiest way to install mzcli is using Homebrew.

::

  $ brew install mzcli

Done!

Alternatively, you can install mzcli as a python package using a package manager called called pip. You will need postgres installed on your system for this to work.

In depth getting started guide for pip - https://pip.pypa.io/en/latest/installing.html.

::

  $ which pip

If it is installed then you can do:

::

  $ pip install mzcli

If that fails due to permission issues, you might need to run the command with sudo permissions.

::

  $ sudo pip install mzcli

If pip is not installed check if easy_install is available on the system.

::

  $ which easy_install

  $ sudo easy_install mzcli

Linux:

In depth getting started guide for pip - https://pip.pypa.io/en/latest/installing.html.

Check if pip is already available in your system.

::

  $ which pip

If it doesn't exist, use your linux package manager to install pip. This might look something like:

::

  $ sudo apt-get install python-pip   # Debian, Ubuntu, Mint etc

  or

  $ sudo yum install python-pip  # RHEL, Centos, Fedora etc

mzcli requires python-dev, libpq-dev and libevent-dev packages. You can install these via your operating system package manager.

::

  $ sudo apt-get install python-dev libpq-dev libevent-dev

  or

  $ sudo yum install python-devel postgresql-devel

Then you can install mzcli:

::

  $ sudo pip install mzcli

mzcli only runs on Python3.6+.

Docker

Pgcli can be run from within Docker. This can be useful to try mzcli without installing it, or any dependencies, system-wide.

To build the image:

::

  $ docker build -t mzcli .

To create a container from the image:

::

  $ docker run --rm -ti mzcli mzcli <ARGS>

To access postgresql databases listening on localhost, make sure to run the docker in "host net mode". E.g. to access a database called "foo" on the postgresql server running on localhost:5432 (the standard port):

::

  $ docker run --rm -ti --net host mzcli mzcli -h localhost foo

To connect to a locally running instance over a unix socket, bind the socket to the docker container:

::

  $ docker run --rm -ti -v /var/run/postgres:/var/run/postgres mzcli mzcli foo

IPython

Pgcli can be run from within IPython <https://ipython.org>_ console. When working on a query, it may be useful to drop into a mzcli session without leaving the IPython console, iterate on a query, then quit mzcli to find the query results in your IPython workspace.

Assuming you have IPython installed:

::

  $ pip install ipython-sql

After that, run ipython and load the mzcli.magic extension:

::

  $ ipython

  In [1]: %load_ext mzcli.magic

Connect to a database and construct a query:

::

  In [2]: %mzcli postgres://someone@localhost:5432/world
  Connected: someone@world
  someone@localhost:world> select * from city c where countrycode = 'USA' and population > 1000000;
  +------+--------------+---------------+--------------+--------------+
  | id   | name         | countrycode   | district     | population   |
  |------+--------------+---------------+--------------+--------------|
  | 3793 | New York     | USA           | New York     | 8008278      |
  | 3794 | Los Angeles  | USA           | California   | 3694820      |
  | 3795 | Chicago      | USA           | Illinois     | 2896016      |
  | 3796 | Houston      | USA           | Texas        | 1953631      |
  | 3797 | Philadelphia | USA           | Pennsylvania | 1517550      |
  | 3798 | Phoenix      | USA           | Arizona      | 1321045      |
  | 3799 | San Diego    | USA           | California   | 1223400      |
  | 3800 | Dallas       | USA           | Texas        | 1188580      |
  | 3801 | San Antonio  | USA           | Texas        | 1144646      |
  +------+--------------+---------------+--------------+--------------+
  SELECT 9
  Time: 0.003s

Exit out of mzcli session with Ctrl + D and find the query results:

::

  someone@localhost:world>
  Goodbye!
  9 rows affected.
  Out[2]:
  [(3793, u'New York', u'USA', u'New York', 8008278),
   (3794, u'Los Angeles', u'USA', u'California', 3694820),
   (3795, u'Chicago', u'USA', u'Illinois', 2896016),
   (3796, u'Houston', u'USA', u'Texas', 1953631),
   (3797, u'Philadelphia', u'USA', u'Pennsylvania', 1517550),
   (3798, u'Phoenix', u'USA', u'Arizona', 1321045),
   (3799, u'San Diego', u'USA', u'California', 1223400),
   (3800, u'Dallas', u'USA', u'Texas', 1188580),
   (3801, u'San Antonio', u'USA', u'Texas', 1144646)]

The results are available in special local variable _, and can be assigned to a variable of your choice:

::

  In [3]: my_result = _

Thanks:

A special thanks to Jonathan Slenders <https://twitter.com/jonathan_s>_ for creating Python Prompt Toolkit <http://github.com/jonathanslenders/python-prompt-toolkit>_, which is quite literally the backbone library, that made this app possible. Jonathan has also provided valuable feedback and support during the development of this app.

Click <http://click.pocoo.org/>_ is used for command line option parsing and printing error messages.

Thanks to psycopg <http://initd.org/psycopg/>_ for providing a rock solid interface to Postgres database.

Thanks to all the beta testers and contributors for your time and patience. :)

.. |Build Status| image:: https://github.com/MaterializeInc/mzcli/actions/workflows/test.yml/badge.svg :target: https://github.com/MaterializeInc/mzcli/actions/workflows/test.yml :alt: Build Status

.. |PyPI| image:: https://img.shields.io/pypi/v/mzcli.svg :target: https://pypi.python.org/pypi/mzcli/ :alt: Latest Version

.. |Slack| image:: https://img.shields.io/badge/slack-chat-%23612dd3 :target: https://materialize.com/s/chat :alt: Slack Chat

.. |Docker| image:: https://img.shields.io/docker/v/materialize/mzcli.svg?label=docker :target: https://hub.docker.com/repository/docker/materialize/mzcli :alt: Docker Image

Tag summary

Content type

Image

Digest

Size

56.1 MB

Last updated

over 4 years ago

docker pull materialize/mzcli