Skip to content

legacy iox nushell integration from july 2022

License

MIT and 2 other licenses found

Licenses found

MIT
LICENSE
Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

stormasm/ioxnu22july

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

This project is the integration of Nushell into Iox. In other words Nushell is now embedded inside Iox and works out of the box.

The motivation for this project is to provide moving forward a much richer interactive experience for the Iox end user by enhancing the terminal user experience for Iox developers and users by way of the advanced nushell language and architecture.

At the moment the only real interaction an end user has with Iox is via the

  • IOx interactive SQL REPL loop
  • functionality provided by the command
influxdb_iox help

This project covers almost everything available in the SQL Repl Loop along with the ability to write both strings and files of Line protocol data similar to the command

influxdb_iox write

To get up and running with Iox and Nushell there are several steps you need to go through.

  1. Build Iox
  2. Build Nushell Commands
  3. Build Nushell
  4. Iox Nushell Command Set

Build Iox

This document assumes you are familiar with building Iox from source and have used it prior to launching down this path. If you are not familiar with building and using Iox then you should start here:

  1. Getting Started
  2. IOx Catalog

Build Nushell Commands

The Nushell Command set is extensive. For this first version of code we included all of the nushell commands so that all of its functionality will be available to the end user of Iox. In the future, we could reduce the size of the default nushell commands and only build and install the relevant features to working with Iox.

cd nu_iox
cargo build

Now that these commands are built one can move forward to build Nushell.

Build Nushell

To build Nushell:

cd iox_nu
cargo build

To run Nushell

./target/debug/nu

Nushell Commands

To see all of the Iox Nushell Commands simply type

help --find iox

You should see four commands listed if everything is working

  • ioxnamespace
  • ioxsql
  • ioxwrite
  • ioxwritefile

To see help on an individual command

ioxnamespace --help
ioxsql --help
ioxwrite --help
ioxwritefile --help

Set a default database that all of the commands will use unless specifically noted via the -d flag

All of the above commands except for ioxnamespace reference the default database via the environment variable called IOX_DBNAME

If you ever want to change the default database that nushell references when running commands simply change it using the let-env command

let-env IOX_DBNAME = "bananas"

which is similar to the use command in the sql repl

use bananas;

Tutorial

Start out by setting

export IOX_DBNAME='plums'

In one of your shells or config files. This will set the default database name...

ioxwrite

Now write some data to the iox database.

ioxwrite "h2o_temperature,location=puget_sound,state=WA surface_degrees=53.7,bottom_degrees=42.1 16007456160"

ioxwritefile

cd influxdb_iox/test_fixtures/lineproto
ioxwritefile ./temperature.lp

ioxnamespace

Get the names of all of the Iox databases

ioxnamespace

ioxsql

show all of the tables in the database

ioxsql "show tables"

show the columns in the h2o_temperature table

ioxsql "show columns from h2o_temperature"

Query the database for the table h2o_temperature

ioxsql "select * from h2o_temperature"

let-env

Change the name of the default database

let-env IOX_DBNAME = "peaches"

and run through all of the commands from above again.

and then test it by switching databases back to the default which is plums and see how the data changes accordingly...

7/31/2022 Sunday

About

legacy iox nushell integration from july 2022

Resources

License

MIT and 2 other licenses found

Licenses found

MIT
LICENSE
Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages