Azure Data Explorer (Kusto) dialect for SQLAlchemy
Project description
Azure Data Explorer (Kusto) dialect for SQLAlchemy
sqlalchemy-kusto
implements a DBAPI (PEP-249) and SQLAlchemy dialect that enables SQL query execution via SQLAlchemy.
Current project includes support for two dialects: SQL dialect and KQL dialect.
SQL dialect
Current implementation has full support for SQL queries. But pay your attention that Kusto implementation of T-SQL has not full coverage; check the list of known issues.
KQL dialect
KQL dialect still in progress. Please, use it on your own risk for now.
Notice that implemented Kusto dialects don't support DDL statements and inserts, deletes, updates.
Installation
pip install sqlalchemy-kusto
Library usage
Using DBAPI
from sqlalchemy_kusto import connect
connection = connect(
cluster=kusto_url,
database=database_name,
msi=False,
user_msi=None,
azure_ad_client_id=kusto_client_id,
azure_ad_client_secret=kusto_client_secret,
azure_ad_tenant_id=kusto_tenant_id,
)
result = connection.execute(f"select 1").fetchall()
Using SQLAlchemy raw sql
from sqlalchemy.engine import create_engine
engine = create_engine(
f"kustosql+{kusto_url}/{database_name}?"
f"msi=False&azure_ad_client_id={kusto_client_id}&"
f"azure_ad_client_secret={kusto_client_secret}&"
f"azure_ad_tenant_id={kusto_tenant_id}"
)
engine.connect()
cursor = engine.execute(f"select top 1")
data_rows = cursor.fetchall()
Using SQLAlchemy
from sqlalchemy import create_engine, MetaData, Table, Column, String, Integer
engine = create_engine(
f"kustosql+{kusto_url}/{database_name}?"
f"msi=False&azure_ad_client_id={kusto_client_id}&"
f"azure_ad_client_secret={kusto_client_secret}&"
f"azure_ad_tenant_id={kusto_tenant_id}"
)
my_table = Table(
"MyTable",
MetaData(),
Column("Id", Integer),
Column("Text", String),
)
query = my_table.select().limit(5)
engine.connect()
cursor = engine.execute(query)
print([row for row in cursor])
Using with Apache Superset
Apache Superset starting from version 1.5 also supports Kusto database engine spec.
When connecting to a new data source you may choose a data source type either KustoSQL or KustoKQL depending on the dialect you want to use.
There are following connection string formats:
# KustoSQL
kustosql+https://<CLUSTER_URL>/<DATABASE>?azure_ad_client_id=<CLIENT_ID>&azure_ad_client_secret=<CLIENT_SECRET>&azure_ad_tenant_id=<TENANT_ID>&msi=False
# KustoKQL
kustokql+https://<CLUSTER_URL>/<DATABASE>?azure_ad_client_id=<CLIENT_ID>&azure_ad_client_secret=<CLIENT_SECRET>&azure_ad_tenant_id=<TENANT_ID>&msi=False
Important notice on package version compatibility.
Apache Superset stable releases 1.5 and 2.0 dependent onsqlalchemy==1.3.24
. If you want to usesqlalchemy-kusto
with these versions you need to install version1.*
of the package.Current
master
branch of theapache/superset
dependent onsqlalchemy==1.4.36
. If you want to usesqlalchemy-kusto
with the latest unstable version ofapache/superset
, you need to install version2.*
of the package.
Contributing
Please see the CONTRIBUTING.md for development setup and contributing process guidelines.
Issue in Apache Superset repository that inspired current solution.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sqlalchemy-kusto-2.0.1.tar.gz
.
File metadata
- Download URL: sqlalchemy-kusto-2.0.1.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 524379aa3410e7bf2809e81f26378b5b924bb7c51ae1b1a6fc183fceb9fa84dc |
|
MD5 | 0a606c31ba860fb8c3634a36767ce2ff |
|
BLAKE2b-256 | d7661245d038f5fd2209f0ec7d27bf62133727e6fc454944fc812a36489bb287 |
File details
Details for the file sqlalchemy_kusto-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: sqlalchemy_kusto-2.0.1-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e93d41e4e12449f8ba202e12b18b58ac60d3bb8c644dd2844665cd28787a3827 |
|
MD5 | aa6cc89b5815b112fa54c5241de5027d |
|
BLAKE2b-256 | de98cbd55cad91113b3bfcc724c4dfa37196d16686ce884b9d010fd74afe5402 |