Skip to main content

Python function to extract all the rows from a SQLite database, without loading the entire file into memory or disk

Project description

stream-sqlite CircleCI Test Coverage

Python function to extract all the rows from a SQLite database file concurrently with iterating over its bytes. Typically used to extract rows while downloading, without loading the entire file to memory or disk.

Installation

pip install stream-sqlite

Usage

from stream_sqlite import stream_sqlite
import httpx

# Iterable that yields the bytes of a sqlite file
def sqlite_bytes():
    with httpx.stream('GET', 'https://www.example.com/my.sqlite') as r:
        yield from r.iter_bytes(chunk_size=65536)

# If there is a single table in the file, there will be exactly one iteration of the outer loop.
# If there are multiple tables, each can appear multiple times.
for table_name, table_info, rows in stream_sqlite(sqlite_bytes(), max_buffer_size=20_971_520):
    # Output of PRAGMA table_info as a namedtuple
    print(table_info)

    for row in rows:
        # Row as a namedtuple
        print(row)

Limitations and recommendations

The SQLite file format is not designed to be streamed: the data is arranged in pages of a fixed number of bytes, and the information to identify a page may come after the page in the stream. Therefore, pages are buffered in memory by the stream_sqlite function until they can be identified.

However, if you have control over the SQLite file, VACUUM; should be run on it before streaming. In addition to minimising the size of the file, VACUUM; arranges the pages in a way that often reduces the buffering required when streaming. This is especially true if it was the target of intermingled INSERTs and/or DELETEs over multiple tables.

Also, indexes are not used for extracting the rows while streaming. If streaming is the only use case of the SQLite file, and you have control over it, indexes should be removed, and VACUUM; then run.

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

stream-sqlite-0.0.29.tar.gz (6.6 kB view hashes)

Uploaded Source

Built Distribution

stream_sqlite-0.0.29-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page