Library for accessing a ClickHouse database over native interface from the asyncio
Project description
aioch
aioch is a library for accessing a ClickHouse database over native interface from the asyncio. It wraps features of clickhouse-driver for asynchronous usage.
Installation
The package can be installed using pip
:
pip install aioch
To install from source:
git clone https://github.com/mymarilyn/aioch
cd aioch
python setup.py install
Usage
from datetime import datetime
import asyncio
from aioch import Client
async def exec_progress():
client = Client('localhost')
progress = await client.execute_with_progress('LONG AND COMPLICATED QUERY')
timeout = 20
started_at = datetime.now()
async for num_rows, total_rows in progress:
done = num_rows / total_rows if total_rows else total_rows
now = datetime.now()
# Cancel query if it takes more than 20 seconds to process 50% of rows.
if (now - started_at).total_seconds() > timeout and done < 0.5:
await client.cancel()
break
else:
rv = await progress.get_result()
print(rv)
async def exec_no_progress():
client = Client('localhost')
rv = await client.execute('LONG AND COMPLICATED QUERY')
print(rv)
loop = asyncio.get_event_loop()
loop.run_until_complete(asyncio.wait([exec_progress(), exec_no_progress()]))
For more information see clickhouse-driver usage examples.
Parameters
executor
- instance of custom Executor, if not supplied default executor will be usedloop
- asyncio compatible event loop
Other parameters are passing to wrapped clickhouse-driver's Client.
License
aioch is distributed under the MIT license.
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
aioch-0.0.2.tar.gz
(4.8 kB
view details)
File details
Details for the file aioch-0.0.2.tar.gz
.
File metadata
- Download URL: aioch-0.0.2.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e36c042d54c2386b5a36bf9a0c8a8e68da10ce51209a3c0854eb79fd36e0c03 |
|
MD5 | 70c26dbe5199c4034d47c8c327cb9adf |
|
BLAKE2b-256 | 3c1b65c9e14966a940bcf5afa72a16f9e3924c815ba8fca8c0e133b20c73f697 |