OS adapter and sqlsh
Overview
The OS (operating system) adapter allows you to access data in your operating system and environment using SQL queries.
It aims to solve similar problems that have traditionally been solved using UNIX command pipelines, but with the power and type-safety of SQL.
The adapter also includes a wrapper called sqlsh
that allows you to execute
commands from your favorite shell.
Security warning
The OS adapter launches processes, and is potentially a security loop-hole. It is included in Calcite’s “plus” module, which is not enabled by default. You must think carefully before enabling it in a security-sensitive situation.
Compatibility
We try to support all tables on every operating system, and to make sure that the tables have the same columns. But we rely heavily on operating system commands, and these differ widely. So:
- These commands only work on Linux and macOS (not Windows, even with Cygwin);
vmstat
has very different columns between Linux and macOS;files
andps
have the same column names but semantics differ;- Other commands work largely the same.
A simple example
Every bash hacker knows that to find the 3 largest files you type
This actually a pipeline of relational operations, each tuple represented
by line of space-separated fields. What if we were able to access the list of
files as a relation and use it in a SQL query? And what if we could easily
execute that SQL query from the shell? This is what sqlsh
does:
sqlsh
sqlsh
launches a connection to Calcite whose default schema is the OS adapter.
It uses the JAVA lexical mode, which means that unquoted table and column names remain in the case that they were written. This is consistent with how shells like bash behave.
Shell meta-characters such as *
, >
, <
, (
, and )
have to be treated with
care. Often adding a back-slash will suffice.
Tables and commands
The OS adapter contains the following tables:
du
- Disk usage (based ondu
command)ps
- Processes (based onps
command)stdin
- Standard inputfiles
- Files (based on thefind
command)git_commits
- Git commits (based ongit log
)vmstat
- Virtual memory (based onvmstat
command)
Most tables are implemented as views on top of table functions.
New data sources are straightforward to add; please contribute yours!
Example: du
How many class files, and what is their total size? In bash
:
In sqlsh
:
The back-slashes are necessary because (
, *
, )
, and '
are shell meta-characters.
Example: files
How many files and directories? In bash
, you would use find
:
In sqlsh
, use the files
table:
Example: ps
Which users have processes running? In sqlsh
:
The ps.
qualifier and back-quotes are necessary because USER is a SQL reserved word.
Now a ‘top N’ problem: Which three users have the most processes? In bash
:
In sqlsh
:
Example: vmstat
How’s my memory?
Example: explain
To find out what columns a table has, use explain
:
Example: git
How many commits and distinct authors per year?
The git_commits
table is based upon the git log
command.
Note that group by y
is possible because sqlsh
uses Calcite’s
lenient mode.
Example: stdin
Print the stdin, adding a number to each line.
In sqlsh
:
Example: output format
The -o
option controls output format.
Format options:
- spaced - spaces between fields (the default)
- headers - as spaced, but with headers
- csv - comma-separated values
- json - JSON, one object per row
- mysql - an aligned table, in the same format used by MySQL
Further work
The OS adapter was created in [CALCITE-1896] but is not complete.
Some ideas for further work:
- Allow ‘-‘and ‘.’ in unquoted table names (to match typical file names)
- Allow ordinal field references, for example ‘$3’. This would help for files
that do not have named fields, for instance
stdin
, but you could use them even if fields have names. Also ‘$0’ to mean the whole input line. - Use the file adapter, e.g.
select * from file.scott.emp
would use the file adapter to open the filescott/emp.csv
- More tables based on git, e.g. branches, tags, files changed in each commit
wc
function, e.g.select path, lineCount from git_ls_files cross apply wc(path)
- Move
sqlsh
command, or at least the java code underneath it, into sqlline