Skip to main content

A simple package that allows creating a pickles dataset and fast random access

Project description

RA Pickles

In many applications, elements from a large dataset, that cannot be stored in memory, need to be sampled (with or without replacement). This simple package simplifies this process by allowing storage of large datasets by splitting them over multiple files in a directory. Once that's done, any dataset element can be queried. Further, most python objects as dataset elements can be used as pickles are used at the backend.

As mentioned before, a dataset will be represented by a directory that contains two sets of files, meta and data. The file identifiers are randomly generated and therefore, two datasets can be added together to create a larger dataset without additional work. This also allows multiple applications to add elements to the dataset in parallel. An example is multiple simulations running in parallel.

Installation

pip3 install ra-pickles

Example

First import all the packages

from ra_pickles import RandomAccessPicklesReader, RandomAccessPicklesWriter
import shutil
import os
import numpy as np

So to create a dataset in test_folder, use the following code. 100 here specifies number of dataset samples in each file. If there are more than 100 files, multiple files will be created. Heuristically, this number can be chosen such that resulting data files are approximately 1 GB, although this wouldn't affect performance much as a complete file is not fully loaded into memory. On the other hand, a too small number can also affect performance as some file systems create issues if there are too many files.

fold = 'test_folder'
writer = RandomAccessPicklesWriter(100, fold)

Now entries to the dataset can be added as follows:

for i in range(30):
    # d is the dataset element which can be any python object
    d = np.ones(4) * i
    
    # and you add it to the dataset
    writer.add(d)
writer.close()

Here, 30 numpy arrays have been added.

To sample elements in the dataset, use the following code:

reader = RandomAccessPicklesReader(fold)
print("Total", reader.get_total())

print("Trying to retreive")
for i in range(30):
    print("Retrieving",i)
    a = reader.get_element(i)
    print(i, a[0])

The index retrieval index can be randomly generated --[0, reader.get_total() ) to sample random elements.

Multiple elements can also be retrieved in parallel for fast access. To do so, first, retrieval threads must be started (and closed at the end):

reader.start_parallel_retrieval_threads(n_theads=5)
data = reader.get_multi_in_parallel([1,2,3])
reader.close_parallel_retrieval_threads()
reader.close()

Good luck!

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

ra_pickles-0.8.6.tar.gz (5.1 kB view details)

Uploaded Source

File details

Details for the file ra_pickles-0.8.6.tar.gz.

File metadata

  • Download URL: ra_pickles-0.8.6.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for ra_pickles-0.8.6.tar.gz
Algorithm Hash digest
SHA256 5aac91b039ba2e818288dd0799f34372c23cde23fcd48d7fe242b8599ab2f7bb
MD5 2e3d73b433ab6af80a996194f5f56892
BLAKE2b-256 f142fd8c0576939fbacbb37447331b4efc248df0cd6bb1fbc7a5fb7d1ad3caf5

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