Skip to content

v0.8.0

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Jan 00:19
· 227 commits to main since this release
v0.8.0
2426bdb

Highlights

Cassandra Support

Cassandra is now supported as an external data source.

-- external table
CREATE EXTERNAL TABLE <table_name> FROM cassandra OPTIONS (
    host = '<host>',
    keyspace = '<keyspace>',
    table = '<table>'
);

-- external database
CREATE EXTERNAL DATABASE <db_name> FROM cassandra OPTIONS (
    host = '<host>',
);

-- table function
SELECT * FROM read_cassandra('<host>', '<keyspace>', '<table>')

Clickhouse Support

GlareDB now supports ClickHouse as an external data source. Learn more in our ClickHouse docs.

Table Functions

Initial FlightSQL Protocol Support

glaredb server now includes support for the experimental FlightSQL protocol.

Enable it with:

glaredb server --enable-flight-api

then use your favorite FlightSQL client to connect to the server.

Installing or Updating

CLI

To install or update just run the following command in the directory you want the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

New Contributors

Full Changelog: v0.7.1...v0.8.0