Skip to main content

AHL Research Versioned TimeSeries and Tick store

Project description

Circle CI Travis CI Coverage Status Join the chat at https://gitter.im/manahl/arctic

Arctic is a high performance datastore for numeric data. It supports Pandas, numpy arrays and pickled objects out-of-the-box, with pluggable support for other data types and optional versioning.

Arctic can query millions of rows per second per client, achieves ~10x compression on network bandwidth, ~10x compression on disk, and scales to hundreds of millions of rows per second per MongoDB instance.

Arctic has been under active development at Man AHL since 2012.

Quickstart

Install Arctic

pip install git+https://github.com/manahl/arctic.git

Run a MongoDB

mongod --dbpath <path/to/db_directory>

Using VersionStore

from arctic import Arctic
import quandl

# Connect to Local MONGODB
store = Arctic('localhost')

# Create the library - defaults to VersionStore
store.initialize_library('NASDAQ')

# Access the library
library = store['NASDAQ']

# Load some data - maybe from Quandl
aapl = quandl.get("WIKI/AAPL", authtoken="your token here")

# Store the data in the library
library.write('AAPL', aapl, metadata={'source': 'Quandl'})

# Reading the data
item = library.read('AAPL')
aapl = item.data
metadata = item.metadata

VersionStore supports much more: See the HowTo!

Adding your own storage engine

Plugging a custom class in as a library type is straightforward. This example shows how.

Concepts

Libraries

Arctic provides namespaced libraries of data. These libraries allow bucketing data by source, user or some other metric (for example frequency: End-Of-Day; Minute Bars; etc.).

Arctic supports multiple data libraries per user. A user (or namespace) maps to a MongoDB database (the granularity of mongo authentication). The library itself is composed of a number of collections within the database. Libraries look like:

  • user.EOD

  • user.ONEMINUTE

A library is mapped to a Python class. All library databases in MongoDB are prefixed with ‘arctic_’

Storage Engines

Arctic includes three storage engines:

  • VersionStore: a key-value versioned TimeSeries store. It supports:

    • Pandas data types (other Python types pickled)

    • Multiple versions of each data item. Can easily read previous versions.

    • Create point-in-time snapshots across symbols in a library

    • Soft quota support

    • Hooks for persisting other data types

    • Audited writes: API for saving metadata and data before and after a write.

    • a wide range of TimeSeries data frequencies: End-Of-Day to Minute bars

    • See the HowTo

  • TickStore: Column oriented tick database. Supports dynamic fields, chunks aren’t versioned. Designed for large continuously ticking data.

  • Chunkstore: A storage type that allows data to be stored in customizable chunk sizes. Chunks aren’t versioned, and can be appended to and updated in place.

Arctic storage implementations are pluggable. VersionStore is the default.

Requirements

Arctic currently works with:

  • Python 2.7, 3.4, 3.5, 3.6

  • pymongo >= 3.0

  • Pandas

  • MongoDB >= 2.4.x

Acknowledgements

Arctic has been under active development at Man AHL since 2012.

It wouldn’t be possible without the work of the AHL Data Engineering Team including:

Contributions welcome!

License

Arctic is licensed under the GNU LGPL v2.1. A copy of which is included in LICENSE

Changelog

1.45 (2017-06-09)

  • BugFix: Rollback #363, which can cause ordering issues on append

1.44 (2017-06-08)

  • Feature: #364 Expose compressHC from internal arctic LZ4 and remove external LZ4 dependency

  • Feature: #363 Appending older data (compare to what’s exist in library) will raise. Use concat=True to append only the new bits

  • Feature: #371 Expose more functionality in BSONStore

1.43 (2017-05-30)

  • Bugfix: #350 remove deprecated pandas calls

  • Bugfix: #360 version incorrect in empty append in VersionStore

  • Feature: #365 add generic BSON store

1.42 (2017-05-12)

  • Bugfix: #346 fixed daterange subsetting error on very large dateframes in version store

  • Bugfix: #351 $size queries can’t use indexes, use alternative queries

1.41 (2017-04-20)

  • Bugfix: #334 Chunk range param with pandas object fails in chunkstore.get_chunk_ranges

  • Bugfix: #339 Depending on lz4<=0.8.2 to fix build errors

  • Bugfix: #342 fixed compilation errors on Mac OSX

  • Bugfix: #344 fixed data corruption problem with concurrent appends

1.40 (2017-03-03)

  • BugFix: #330 Make Arctic._lock reentrant

1.39 (2017-03-03)

  • Feature: #329 Add reset() method to Arctic

1.38 (2017-02-22)

  • Bugfix: #324 Datetime indexes must be sorted in chunkstore

  • Feature: #290 improve performance of tickstore column reads

1.37 (2017-1-31)

  • Bugfix: #300 to_datetime deprecated in pandas, use to_pydatetime instead

  • Bugfix: #309 formatting change for DateRange __str__

  • Feature: #313 set and read user specified metadata in chunkstore

  • Feature: #319 Audit log support in ChunkStor

  • Bugfix: #216 Tickstore write fails with named index column

1.36 (2016-12-13)

  • Feature: Default to hashed based sharding

  • Bugfix: retry socket errors during VersionStore snapshot operations

1.35 (2016-11-29)

  • Bugfix: #296 Cannot compress/decompress empty string

1.34 (2016-11-29)

  • Feature: #294 Move per-chunk metadata for chunkstore to a separate collection

  • Bugfix: #292 Account for metadata size during size chunking in ChunkStore

  • Feature: #283 Support for all pandas frequency strings in ChunkStore DateChunker

  • Feature: #286 Add has_symbol to ChunkStore and support for partial symbol matching in list_symbols

1.33 (2016-11-07)

  • Feature: #275 Tuple range object support in DateChunker

  • Bugfix: #273 Duplicate columns breaking serializer

  • Feature: #267 Tickstore.delete returns deleted data

  • Dependency: #266 Remove pytest-dbfixtures in favor of pytest-server-fixtures

1.32 (2016-10-25)

  • Feature: #260 quota support on Chunkstore

  • Bugfix: #259 prevent write of unnamed columns/indexes

  • Bugfix: #252 pandas 0.19.0 compatibility fixes

  • Bugfix: #249 open ended range reads on data without index fail

  • Bugfix: #262 VersionStore.append must check data is written correctly during repack

  • Bugfix: #263 Quota: Improve the error message when near soft-quota limit

  • Perf: #265 VersionStore.write / append don’t aggressively add indexes on each write

1.31 (2016-09-29)

  • Bugfix: #247 segmentation read fix in chunkstore

  • Feature: #243 add get_library_type method

  • Bugfix: more cython changes to handle LZ4 errors properly

  • Feature: #239 improve chunkstore’s get_info method

1.30 (2016-09-26)

  • Feature: #235 method to return chunk ranges on a symbol in ChunkStore

  • Feature: #234 Iterator access to ChunkStore

  • Bugfix: #236 Cython not handling errors from LZ4 function calls

1.29 (2016-09-20)

  • Bugfix: #228 Mongo fail-over during append can leave a Version in an inconsistent state

  • Feature: #193 Support for different Chunkers and Serializers by symbol in ChunkStore

  • Feature: #220 Raise exception if older version of arctic attempts to read unsupported pickled data

  • Feature: #219 and #220 Support for pickling large data (>2GB)

  • Feature: #204 Add support for library renaming

  • Feature: #209 Upsert capability in ChunkStore’s update method

  • Feature: #207 Support DatetimeIndexes in DateRange chunker

  • Bugfix: #232 Don’t raise during VersionStore #append(…) if the previous append failed

1.28 (2016-08-16)

  • Bugfix: #195 Top level tickstore write with list of dicts now works with timezone aware datetimes

1.27 (2016-08-05)

  • Bugfix: #187 Compatibility with latest version of pytest-dbfixtures

  • Feature: #182 Improve ChunkStore read/write performance

  • Feature: #162 Rename API for ChunkStore

  • Feature: #186 chunk_range on update

  • Bugfix: #189 range delete does not update symbol metadata

1.26 (2016-07-20)

  • Bugfix: Faster TickStore querying for multiple symbols simultaneously

  • Bugfix: TickStore.read now respects allow_secondary=True

  • Bugfix: #147 Add get_info method to ChunkStore

  • Bugfix: Periodically re-cache the library.quota to pick up any changes

  • Bugfix: #166 Add index on SHA for ChunkStore

  • Bugfix: #169 Dtype mismatch in chunkstore updates

  • Feature: #171 allow deleting of values within a date range in ChunkStore

  • Bugfix: #172 Fix date range bug when querying dates in the middle of chunks

  • Bugfix: #176 Fix overwrite failures in Chunkstore

  • Bugfix: #178 - Change how start/end dates are populated in the DB, also fix append so it works as expected.

  • Bugfix: #43 - Remove dependency on hardcoded Linux timezone files

1.25 (2016-05-23)

  • Bugfix: Ensure that Tickstore.write doesn’t allow out of order messages

  • Bugfix: VersionStore.write now allows writing ‘None’ as a value

1.24 (2016-05-10)

  • Bugfix: Backwards compatibility reading/writing documents with previous versions of Arctic

1.22 (2016-05-09)

  • Bugfix: #109 Ensure stable sort during Arctic read

  • Feature: New benchmark suite using ASV

  • Bugfix: #129 Fixed an issue where some chunks could get skipped during a multiple-symbol TickStore read

  • Bugfix: #135 Fix issue with different datatype returned from pymongo in python3

  • Feature: #130 New Chunkstore storage type

1.21 (2016-03-08)

  • Bugfix: #106 Fix Pandas Panel storage for panels with different dimensions

1.20 (2016-02-03)

  • Feature: #98 Add initial_image as optional parameter on tickstore write()

  • Bugfix: #100 Write error on end field when writing with pandas dataframes

1.19 (2016-01-29)

  • Feature: Add python 3.3/3.4 support

  • Bugfix: #95 Fix raising NoDataFoundException across multiple low level libraries

1.18 (2016-01-05)

  • Bugfix: #81 Fix broken read of multi-index DataFrame written by old version of Arctic

  • Bugfix: #49 Fix strifying tickstore

1.17 (2015-12-24)

  • Feature: Add timezone suppport to store multi-index dataframes

  • Bugfix: Fixed broken sdist releases

1.16 (2015-12-15)

  • Feature: ArticTransaction now supports non-audited ‘transactions’: audit=False with ArcticTransaction(Arctic('hostname')['some_library'], 'symbol', audit=False) as at: ... This is useful for batch jobs which read-modify-write and don’t want to clash with concurrent writers, and which don’t require keeping all versions of a symbol.

1.15 (2015-11-25)

  • Feature: get_info API added to version_store.

1.14 (2015-11-25)

1.12 (2015-11-12)

  • Bugfix: correct version detection for Pandas >= 0.18.

  • Bugfix: retrying connection initialisation in case of an AutoReconnect failure.

1.11 (2015-10-29)

  • Bugfix: Improve performance of saving multi-index Pandas DataFrames by 9x

  • Bugfix: authenticate should propagate non-OperationFailure exceptions (e.g. ConnectionFailure) as this might be indicative of socket failures

  • Bugfix: return ‘deleted’ state in VersionStore.list_versions() so that callers can pick up on the head version being the delete-sentinel.

1.10 (2015-10-28)

  • Bugfix: VersionStore.read(date_range=…) could do the wrong thing with TimeZones (which aren’t yet supported for date_range slicing.).

1.9 (2015-10-06)

  • Bugfix: fix authentication race condition when sharing an Arctic instance between multiple threads.

1.8 (2015-09-29)

  • Bugfix: compatibility with both 3.0 and pre-3.0 MongoDB for querying current authentications

1.7 (2015-09-18)

  • Feature: Add support for reading a subset of a pandas DataFrame in VersionStore.read by passing in an arctic.date.DateRange

  • Bugfix: Reauth against admin if not auth’d against a library a specific library’s DB. Sometimes we appear to miss admin DB auths. This is to workaround that until we work out what the issue is.

1.6 (2015-09-16)

  • Feature: Add support for multi-index Bitemporal DataFrame storage. This allows persisting data and changes within the DataFrame making it easier to see how old data has been revised over time.

  • Bugfix: Ensure we call the error logging hook when exceptions occur

1.5 (2015-09-02)

  • Always use the primary cluster node for ‘has_symbol()’, it’s safer

1.4 (2015-08-19)

  • Bugfixes for timezone handling, now ensures use of non-naive datetimes

  • Bugfix for tickstore read missing images

1.3 (2015-08-011)

  • Improvements to command-line control scripts for users and libraries

  • Bugfix for pickling top-level Arctic object

1.2 (2015-06-29)

  • Allow snapshotting a range of versions in the VersionStore, and snapshot all versions by default.

1.1 (2015-06-16)

  • Bugfix for backwards-compatible unpickling of bson-encoded data

  • Added switch for enabling parallel lz4 compression

1.0 (2015-06-14)

  • Initial public release

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

arctic-1.45.0.tar.gz (462.5 kB view details)

Uploaded Source

Built Distributions

arctic-1.45.0-py2.7-linux-x86_64.egg (311.5 kB view details)

Uploaded Source

arctic-1.45.0-cp36-cp36m-manylinux1_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.6m

arctic-1.45.0-cp36-cp36m-macosx_10_7_x86_64.whl (327.7 kB view details)

Uploaded CPython 3.6m macOS 10.7+ x86-64

arctic-1.45.0-cp27-cp27mu-manylinux1_x86_64.whl (463.9 kB view details)

Uploaded CPython 2.7mu

arctic-1.45.0-cp27-cp27m-manylinux1_x86_64.whl (463.9 kB view details)

Uploaded CPython 2.7m

arctic-1.45.0-cp27-cp27m-macosx_10_7_x86_64.whl (316.5 kB view details)

Uploaded CPython 2.7m macOS 10.7+ x86-64

File details

Details for the file arctic-1.45.0.tar.gz.

File metadata

  • Download URL: arctic-1.45.0.tar.gz
  • Upload date:
  • Size: 462.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for arctic-1.45.0.tar.gz
Algorithm Hash digest
SHA256 e6b2a86af1f96f40de8d524cf4f9d8fad777ad1dacb43fd3aa7b7a1d6242065a
MD5 0ac92e66f020b3f45cc85951e4eaea5e
BLAKE2b-256 04c85cb2e2daaed62cd9347a9216edc4390d4927bab52f8bb0f13737d3fba6e0

See more details on using hashes here.

File details

Details for the file arctic-1.45.0-py2.7-linux-x86_64.egg.

File metadata

File hashes

Hashes for arctic-1.45.0-py2.7-linux-x86_64.egg
Algorithm Hash digest
SHA256 2ad7cf9b129cdc03f5a81f522a6fcd04f33edefaa23ba89368a9882778feb76a
MD5 8e00e90b0ceffa2021103c8ad9d864db
BLAKE2b-256 590b68a6c7e622eb9f95454996072de7ac6c9cd14f3e3732af228110c9dfe1af

See more details on using hashes here.

File details

Details for the file arctic-1.45.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for arctic-1.45.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 825e58c5c8cfc703b1bc7eed02b7aa70b25672f373d2878974e7bd04aef72925
MD5 16c027913a2a22e889e0f1486e86097e
BLAKE2b-256 ac1db588f9e10b324e4752da791645a26a19feb0dc12d3cc6cfd75dd1f9ea5f8

See more details on using hashes here.

File details

Details for the file arctic-1.45.0-cp36-cp36m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for arctic-1.45.0-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fc5d6dcf3c4e011d973bf147b9df46c69f5e4dde26e68613f61d3100e4a9d17e
MD5 422fc44be89a1ac5635f9fbf56775d07
BLAKE2b-256 e94922b1378f687c8a687a0b1fddecb2884ce6a381bf8fcb73d7d248e02a4273

See more details on using hashes here.

File details

Details for the file arctic-1.45.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for arctic-1.45.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d202fbc8a1e641a256455870e7b6040c414db951d4c23e0cd2a25ef503819e72
MD5 052d17654c2668520ea79b3d9e42a419
BLAKE2b-256 909883adf1551194025814cf257a2ad65924e3166ee810d51171976f11710333

See more details on using hashes here.

File details

Details for the file arctic-1.45.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for arctic-1.45.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4793433616a5559b1e88d314a21b37784c41a3b6c6b45a47ea798255e5a0a28e
MD5 4e971dd5ed76b5dd6d39fb142267fe63
BLAKE2b-256 292d71f243cac90c06b0e34fc95ada043bb68357d4f6c59437500090d23bf75d

See more details on using hashes here.

File details

Details for the file arctic-1.45.0-cp27-cp27m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for arctic-1.45.0-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7697ab0ae0f3a86b7306a3ca8654cf8901a80b0da01028841ec98f13c82f042b
MD5 747ec0ee63e51062293b1defdd099e34
BLAKE2b-256 181cba919b1375a5269e5691a9f23998b855f5fe31a42b60ade330b1160bdacf

See more details on using hashes here.

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