Skip to main content

Python function to extract all the rows from a SQLite database file concurrently with iterating over its bytes, without needing random access to the file

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, without needing random access to the file.

Note that 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 often comes after the page in the stream (sometimes a great deal after). Therefore, pages are buffered in memory until they can be identified.

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', 'http://www.parlgov.org/static/stable/2020/parlgov-stable.db') as r:
        yield from r.iter_bytes(chunk_size=65_536)

# 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, pragma_table_info, rows in stream_sqlite(sqlite_bytes(), max_buffer_size=1_048_576):
    for row in rows:
        print(row)

Recommendations

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.

Some tests suggest that if the file is written in autovacuum mode, i.e. PRAGMA auto_vacuum = FULL;, then the pages are arranged in a way that reduces the buffering required when streaming. Your mileage may vary.

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.41.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

stream_sqlite-0.0.41-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file stream-sqlite-0.0.41.tar.gz.

File metadata

  • Download URL: stream-sqlite-0.0.41.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for stream-sqlite-0.0.41.tar.gz
Algorithm Hash digest
SHA256 449ed55fb765b79b5a7599855a037dec2e07cdff448a4197d04da103e09499e2
MD5 d03ffab22af39822b948a748bcf3fbdd
BLAKE2b-256 617cf41dbc6f6221a6beac3e173ce3895d224807f7dcfe5531c3976b4d98e5de

See more details on using hashes here.

File details

Details for the file stream_sqlite-0.0.41-py3-none-any.whl.

File metadata

  • Download URL: stream_sqlite-0.0.41-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for stream_sqlite-0.0.41-py3-none-any.whl
Algorithm Hash digest
SHA256 3aa1bbf4b50eb67df7e5f56b9bbe828b31750c05c9bd883be29d15b8bdc016f5
MD5 7abe365a8127fe92ad563b76b83d1cb3
BLAKE2b-256 d93d56b05e6633743723c9de189550338b5c6c53b2d45baa2503dc355eb453dd

See more details on using hashes here.

Supported by

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