Kusto Ingest Client
Project description
from azure.kusto.data.request import KustoConnectionStringBuilder
from azure.kusto.ingest import KustoIngestClient, IngestionProperties, FileDescriptor, BlobDescriptor, DataFormat
ingestion_props = IngestionProperties(database="{database_name}", table="{table_name}", dataFormat=DataFormat.csv)
client = KustoIngestClient("https://ingest-{cluster_name}.kusto.windows.net")
file_descriptor = FileDescriptor("{filename}.csv", 3333) # 3333 is the raw size of the data in bytes.
client.ingest_from_file(file_descriptor, ingestion_properties=ingestion_props)
client.ingest_from_file("{filename}.csv", ingestion_properties=ingestion_props)
blob_descriptor = BlobDescriptor("https://{path_to_blob}.csv.gz?sas", 10) # 10 is the raw size of the data in bytes.
client.ingest_from_blob(blob_descriptor, ingestion_properties=ingestion_props)
Overview
Kusto Python Ingest Client Library provides the capability to ingest data into Kusto clusters using Python. It is Python 2.x/3.x compatible and supports data types through familiar Python DB API interface.
It’s possible to use the library, for instance, from Jupyter Notebooks which are attached to Spark clusters, including, but not exclusively, Azure Databricks instances.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
azure-kusto-ingest-0.0.28.tar.gz
(11.1 kB
view details)
Built Distribution
File details
Details for the file azure-kusto-ingest-0.0.28.tar.gz
.
File metadata
- Download URL: azure-kusto-ingest-0.0.28.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 705653cd516e9f03c79ab4e05b9efe937421b4b7ea2ab8b34c37a842f7587fb8 |
|
MD5 | 9fec0f7ae3e6d1b969143386b9c27444 |
|
BLAKE2b-256 | 2f9b4c34e5c30cd8da1ac17dbb4724f1d21314a2799e77038961255b9660270c |
File details
Details for the file azure_kusto_ingest-0.0.28-py2.py3-none-any.whl
.
File metadata
- Download URL: azure_kusto_ingest-0.0.28-py2.py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b18d5ee6224590eeba3c89e07b3a6da1f99299670195aef7bdf8d79905d8e0f9 |
|
MD5 | db43aa0497dfa2b869ad03ccd535b34f |
|
BLAKE2b-256 | 365df2db6246bbeceebe0055a089988c5c14e47a009fb6391031a17bfa090698 |