├── .circleci └── config.yml ├── .coveragerc ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .project ├── .pydevproject ├── .readthedocs.yaml ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── README-arctic.md ├── README.md ├── arctic ├── __init__.py ├── _cache.py ├── _compression.py ├── _config.py ├── _util.py ├── arctic.py ├── asynchronous │ ├── __init__.py │ ├── _workers_pool.py │ ├── async_arctic.py │ └── async_utils.py ├── auth.py ├── chunkstore │ ├── __init__.py │ ├── _chunker.py │ ├── chunkstore.py │ ├── date_chunker.py │ ├── passthrough_chunker.py │ ├── tools │ │ ├── __init__.py │ │ └── tools.py │ └── utils.py ├── date │ ├── __init__.py │ ├── _daterange.py │ ├── _generalslice.py │ ├── _mktz.py │ ├── _parse.py │ └── _util.py ├── decorators.py ├── exceptions.py ├── fixtures │ ├── __init__.py │ └── arctic.py ├── hooks.py ├── hosts.py ├── multi_index.py ├── scripts │ ├── __init__.py │ ├── arctic_copy_data.py │ ├── arctic_create_user.py │ ├── arctic_delete_library.py │ ├── arctic_enable_sharding.py │ ├── arctic_fsck.py │ ├── arctic_init_library.py │ ├── arctic_list_libraries.py │ ├── arctic_prune_versions.py │ └── utils.py ├── serialization │ ├── __init__.py │ ├── _serializer.py │ ├── incremental.py │ ├── numpy_arrays.py │ └── numpy_records.py ├── store │ ├── __init__.py │ ├── _ndarray_store.py │ ├── _pandas_ndarray_store.py │ ├── _pickle_store.py │ ├── _version_store_utils.py │ ├── audit.py │ ├── bitemporal_store.py │ ├── bson_store.py │ ├── metadata_store.py │ ├── version_store.py │ └── versioned_item.py └── tickstore │ ├── __init__.py │ ├── tickstore.py │ └── toplevel.py ├── asv.conf.json ├── benchmarks.md ├── benchmarks ├── __init__.py ├── benchmarks.py ├── fast_serializable_check.py ├── fwd_pointers │ └── fwd_benchmarks.py └── lz4_tuning │ ├── README.txt │ ├── benchmark_lz4.py │ ├── results_Xeon_E5_2643.HC.txt │ └── results_Xeon_E5_2643.noHC.txt ├── docs ├── chunkstore.md ├── chunkstore_api.md ├── configuration.md ├── contributing.md ├── developing-conda-mac.md ├── faq.md ├── index.md ├── migration_py3.md ├── quickstart.md ├── releasing.md ├── requirements.txt ├── tickstore.md ├── users.md └── versionstore.md ├── howtos ├── 201507_demo_pydata.py ├── how_to_custom_arctic_library.py └── how_to_use_arctic.py ├── logo ├── arctic.svg ├── arctic_100.png ├── arctic_200.png ├── arctic_50.png └── arctic_500.png ├── mkdocs.yml ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── integration ├── __init__.py ├── chunkstore │ ├── __init__.py │ ├── test_chunkstore.py │ ├── test_fixes.py │ ├── test_utils.py │ └── tools │ │ ├── __init__.py │ │ └── test_tools.py ├── fixtures │ ├── __init__.py │ └── test_arctic.py ├── scripts │ ├── __init__.py │ ├── test_arctic_fsck.py │ ├── test_copy_data.py │ ├── test_delete_library.py │ ├── test_enable_sharding.py │ ├── test_initialize_library.py │ ├── test_list_libraries.py │ └── test_prune_versions.py ├── store │ ├── __init__.py │ ├── test_bitemporal_store.py │ ├── test_metadata_store.py │ ├── test_ndarray_store.py │ ├── test_ndarray_store_append.py │ ├── test_pandas_store.py │ ├── test_pickle_store.py │ ├── test_version_store.py │ ├── test_version_store_audit.py │ └── test_version_store_corruption.py ├── test_arctic.py ├── test_arctic_multithreading.py ├── test_async_arctic.py ├── test_compress_integration.py ├── test_concurrent_append.py ├── test_decorators.py ├── test_howtos.py ├── test_utils.py └── tickstore │ ├── __init__.py │ ├── conftest.py │ ├── test_toplevel.py │ ├── test_ts_delete.py │ ├── test_ts_read.py │ └── test_ts_write.py ├── unit ├── __init__.py ├── chunkstore │ ├── __init__.py │ ├── test_date_chunker.py │ └── test_passthrough_chunker.py ├── date │ ├── __init__.py │ ├── test_daterange.py │ ├── test_datetime_to_ms_roundtrip.py │ ├── test_mktz.py │ └── test_util.py ├── scripts │ ├── __init__.py │ ├── test_arctic_create_user.py │ ├── test_arctic_fsck.py │ ├── test_initialize_library.py │ └── test_utils.py ├── serialization │ ├── __init__.py │ ├── serialization_test_data.py │ ├── test_incremental.py │ ├── test_numpy_arrays.py │ ├── test_numpy_records.py │ └── test_pandas_is_serializable.py ├── store │ ├── __init__.py │ ├── data │ │ └── test-data.pkl │ ├── test_bitemporal_store.py │ ├── test_bson_store.py │ ├── test_metadata_store.py │ ├── test_ndarray_store.py │ ├── test_pandas_ndarray_store.py │ ├── test_pickle_store.py │ ├── test_version_item.py │ ├── test_version_store.py │ ├── test_version_store_audit.py │ └── test_version_store_utils.py ├── test_arctic.py ├── test_auth.py ├── test_compress.py ├── test_compression.py ├── test_decorators_unit.py ├── test_fixtures.py ├── test_hooks.py ├── test_hosts.py ├── test_multi_index.py ├── test_util.py └── tickstore │ ├── __init__.py │ ├── test_tickstore.py │ └── test_toplevel.py └── util.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.pydevproject -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/LICENSE -------------------------------------------------------------------------------- /README-arctic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/README-arctic.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/README.md -------------------------------------------------------------------------------- /arctic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/__init__.py -------------------------------------------------------------------------------- /arctic/_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/_cache.py -------------------------------------------------------------------------------- /arctic/_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/_compression.py -------------------------------------------------------------------------------- /arctic/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/_config.py -------------------------------------------------------------------------------- /arctic/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/_util.py -------------------------------------------------------------------------------- /arctic/arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/arctic.py -------------------------------------------------------------------------------- /arctic/asynchronous/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/asynchronous/__init__.py -------------------------------------------------------------------------------- /arctic/asynchronous/_workers_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/asynchronous/_workers_pool.py -------------------------------------------------------------------------------- /arctic/asynchronous/async_arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/asynchronous/async_arctic.py -------------------------------------------------------------------------------- /arctic/asynchronous/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/asynchronous/async_utils.py -------------------------------------------------------------------------------- /arctic/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/auth.py -------------------------------------------------------------------------------- /arctic/chunkstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arctic/chunkstore/_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/chunkstore/_chunker.py -------------------------------------------------------------------------------- /arctic/chunkstore/chunkstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/chunkstore/chunkstore.py -------------------------------------------------------------------------------- /arctic/chunkstore/date_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/chunkstore/date_chunker.py -------------------------------------------------------------------------------- /arctic/chunkstore/passthrough_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/chunkstore/passthrough_chunker.py -------------------------------------------------------------------------------- /arctic/chunkstore/tools/__init__.py: -------------------------------------------------------------------------------- 1 | from .tools import segment_id_repair 2 | -------------------------------------------------------------------------------- /arctic/chunkstore/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/chunkstore/tools/tools.py -------------------------------------------------------------------------------- /arctic/chunkstore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/chunkstore/utils.py -------------------------------------------------------------------------------- /arctic/date/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/date/__init__.py -------------------------------------------------------------------------------- /arctic/date/_daterange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/date/_daterange.py -------------------------------------------------------------------------------- /arctic/date/_generalslice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/date/_generalslice.py -------------------------------------------------------------------------------- /arctic/date/_mktz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/date/_mktz.py -------------------------------------------------------------------------------- /arctic/date/_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/date/_parse.py -------------------------------------------------------------------------------- /arctic/date/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/date/_util.py -------------------------------------------------------------------------------- /arctic/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/decorators.py -------------------------------------------------------------------------------- /arctic/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/exceptions.py -------------------------------------------------------------------------------- /arctic/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/fixtures/__init__.py -------------------------------------------------------------------------------- /arctic/fixtures/arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/fixtures/arctic.py -------------------------------------------------------------------------------- /arctic/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/hooks.py -------------------------------------------------------------------------------- /arctic/hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/hosts.py -------------------------------------------------------------------------------- /arctic/multi_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/multi_index.py -------------------------------------------------------------------------------- /arctic/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arctic/scripts/arctic_copy_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_copy_data.py -------------------------------------------------------------------------------- /arctic/scripts/arctic_create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_create_user.py -------------------------------------------------------------------------------- /arctic/scripts/arctic_delete_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_delete_library.py -------------------------------------------------------------------------------- /arctic/scripts/arctic_enable_sharding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_enable_sharding.py -------------------------------------------------------------------------------- /arctic/scripts/arctic_fsck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_fsck.py -------------------------------------------------------------------------------- /arctic/scripts/arctic_init_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_init_library.py -------------------------------------------------------------------------------- /arctic/scripts/arctic_list_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_list_libraries.py -------------------------------------------------------------------------------- /arctic/scripts/arctic_prune_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/arctic_prune_versions.py -------------------------------------------------------------------------------- /arctic/scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/scripts/utils.py -------------------------------------------------------------------------------- /arctic/serialization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arctic/serialization/_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/serialization/_serializer.py -------------------------------------------------------------------------------- /arctic/serialization/incremental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/serialization/incremental.py -------------------------------------------------------------------------------- /arctic/serialization/numpy_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/serialization/numpy_arrays.py -------------------------------------------------------------------------------- /arctic/serialization/numpy_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/serialization/numpy_records.py -------------------------------------------------------------------------------- /arctic/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arctic/store/_ndarray_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/_ndarray_store.py -------------------------------------------------------------------------------- /arctic/store/_pandas_ndarray_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/_pandas_ndarray_store.py -------------------------------------------------------------------------------- /arctic/store/_pickle_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/_pickle_store.py -------------------------------------------------------------------------------- /arctic/store/_version_store_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/_version_store_utils.py -------------------------------------------------------------------------------- /arctic/store/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/audit.py -------------------------------------------------------------------------------- /arctic/store/bitemporal_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/bitemporal_store.py -------------------------------------------------------------------------------- /arctic/store/bson_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/bson_store.py -------------------------------------------------------------------------------- /arctic/store/metadata_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/metadata_store.py -------------------------------------------------------------------------------- /arctic/store/version_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/version_store.py -------------------------------------------------------------------------------- /arctic/store/versioned_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/store/versioned_item.py -------------------------------------------------------------------------------- /arctic/tickstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arctic/tickstore/tickstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/tickstore/tickstore.py -------------------------------------------------------------------------------- /arctic/tickstore/toplevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/arctic/tickstore/toplevel.py -------------------------------------------------------------------------------- /asv.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/asv.conf.json -------------------------------------------------------------------------------- /benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks.md -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks/benchmarks.py -------------------------------------------------------------------------------- /benchmarks/fast_serializable_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks/fast_serializable_check.py -------------------------------------------------------------------------------- /benchmarks/fwd_pointers/fwd_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks/fwd_pointers/fwd_benchmarks.py -------------------------------------------------------------------------------- /benchmarks/lz4_tuning/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks/lz4_tuning/README.txt -------------------------------------------------------------------------------- /benchmarks/lz4_tuning/benchmark_lz4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks/lz4_tuning/benchmark_lz4.py -------------------------------------------------------------------------------- /benchmarks/lz4_tuning/results_Xeon_E5_2643.HC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks/lz4_tuning/results_Xeon_E5_2643.HC.txt -------------------------------------------------------------------------------- /benchmarks/lz4_tuning/results_Xeon_E5_2643.noHC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/benchmarks/lz4_tuning/results_Xeon_E5_2643.noHC.txt -------------------------------------------------------------------------------- /docs/chunkstore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/chunkstore.md -------------------------------------------------------------------------------- /docs/chunkstore_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/chunkstore_api.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/developing-conda-mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/developing-conda-mac.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/migration_py3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/migration_py3.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/releasing.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | Markdown 3 | mkdocs 4 | -------------------------------------------------------------------------------- /docs/tickstore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/tickstore.md -------------------------------------------------------------------------------- /docs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/users.md -------------------------------------------------------------------------------- /docs/versionstore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/docs/versionstore.md -------------------------------------------------------------------------------- /howtos/201507_demo_pydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/howtos/201507_demo_pydata.py -------------------------------------------------------------------------------- /howtos/how_to_custom_arctic_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/howtos/how_to_custom_arctic_library.py -------------------------------------------------------------------------------- /howtos/how_to_use_arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/howtos/how_to_use_arctic.py -------------------------------------------------------------------------------- /logo/arctic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/logo/arctic.svg -------------------------------------------------------------------------------- /logo/arctic_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/logo/arctic_100.png -------------------------------------------------------------------------------- /logo/arctic_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/logo/arctic_200.png -------------------------------------------------------------------------------- /logo/arctic_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/logo/arctic_50.png -------------------------------------------------------------------------------- /logo/arctic_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/logo/arctic_500.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/chunkstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/chunkstore/test_chunkstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/chunkstore/test_chunkstore.py -------------------------------------------------------------------------------- /tests/integration/chunkstore/test_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/chunkstore/test_fixes.py -------------------------------------------------------------------------------- /tests/integration/chunkstore/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/chunkstore/test_utils.py -------------------------------------------------------------------------------- /tests/integration/chunkstore/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/chunkstore/tools/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/chunkstore/tools/test_tools.py -------------------------------------------------------------------------------- /tests/integration/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/fixtures/test_arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/fixtures/test_arctic.py -------------------------------------------------------------------------------- /tests/integration/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/scripts/test_arctic_fsck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/scripts/test_arctic_fsck.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_copy_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/scripts/test_copy_data.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_delete_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/scripts/test_delete_library.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_enable_sharding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/scripts/test_enable_sharding.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_initialize_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/scripts/test_initialize_library.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_list_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/scripts/test_list_libraries.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_prune_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/scripts/test_prune_versions.py -------------------------------------------------------------------------------- /tests/integration/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/store/test_bitemporal_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_bitemporal_store.py -------------------------------------------------------------------------------- /tests/integration/store/test_metadata_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_metadata_store.py -------------------------------------------------------------------------------- /tests/integration/store/test_ndarray_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_ndarray_store.py -------------------------------------------------------------------------------- /tests/integration/store/test_ndarray_store_append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_ndarray_store_append.py -------------------------------------------------------------------------------- /tests/integration/store/test_pandas_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_pandas_store.py -------------------------------------------------------------------------------- /tests/integration/store/test_pickle_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_pickle_store.py -------------------------------------------------------------------------------- /tests/integration/store/test_version_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_version_store.py -------------------------------------------------------------------------------- /tests/integration/store/test_version_store_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_version_store_audit.py -------------------------------------------------------------------------------- /tests/integration/store/test_version_store_corruption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/store/test_version_store_corruption.py -------------------------------------------------------------------------------- /tests/integration/test_arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_arctic.py -------------------------------------------------------------------------------- /tests/integration/test_arctic_multithreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_arctic_multithreading.py -------------------------------------------------------------------------------- /tests/integration/test_async_arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_async_arctic.py -------------------------------------------------------------------------------- /tests/integration/test_compress_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_compress_integration.py -------------------------------------------------------------------------------- /tests/integration/test_concurrent_append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_concurrent_append.py -------------------------------------------------------------------------------- /tests/integration/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_decorators.py -------------------------------------------------------------------------------- /tests/integration/test_howtos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_howtos.py -------------------------------------------------------------------------------- /tests/integration/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/test_utils.py -------------------------------------------------------------------------------- /tests/integration/tickstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/tickstore/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/tickstore/conftest.py -------------------------------------------------------------------------------- /tests/integration/tickstore/test_toplevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/tickstore/test_toplevel.py -------------------------------------------------------------------------------- /tests/integration/tickstore/test_ts_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/tickstore/test_ts_delete.py -------------------------------------------------------------------------------- /tests/integration/tickstore/test_ts_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/tickstore/test_ts_read.py -------------------------------------------------------------------------------- /tests/integration/tickstore/test_ts_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/integration/tickstore/test_ts_write.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/chunkstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/chunkstore/test_date_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/chunkstore/test_date_chunker.py -------------------------------------------------------------------------------- /tests/unit/chunkstore/test_passthrough_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/chunkstore/test_passthrough_chunker.py -------------------------------------------------------------------------------- /tests/unit/date/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/date/test_daterange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/date/test_daterange.py -------------------------------------------------------------------------------- /tests/unit/date/test_datetime_to_ms_roundtrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/date/test_datetime_to_ms_roundtrip.py -------------------------------------------------------------------------------- /tests/unit/date/test_mktz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/date/test_mktz.py -------------------------------------------------------------------------------- /tests/unit/date/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/date/test_util.py -------------------------------------------------------------------------------- /tests/unit/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/scripts/test_arctic_create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/scripts/test_arctic_create_user.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_arctic_fsck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/scripts/test_arctic_fsck.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_initialize_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/scripts/test_initialize_library.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/scripts/test_utils.py -------------------------------------------------------------------------------- /tests/unit/serialization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/serialization/serialization_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/serialization/serialization_test_data.py -------------------------------------------------------------------------------- /tests/unit/serialization/test_incremental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/serialization/test_incremental.py -------------------------------------------------------------------------------- /tests/unit/serialization/test_numpy_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/serialization/test_numpy_arrays.py -------------------------------------------------------------------------------- /tests/unit/serialization/test_numpy_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/serialization/test_numpy_records.py -------------------------------------------------------------------------------- /tests/unit/serialization/test_pandas_is_serializable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/serialization/test_pandas_is_serializable.py -------------------------------------------------------------------------------- /tests/unit/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/store/data/test-data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/data/test-data.pkl -------------------------------------------------------------------------------- /tests/unit/store/test_bitemporal_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_bitemporal_store.py -------------------------------------------------------------------------------- /tests/unit/store/test_bson_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_bson_store.py -------------------------------------------------------------------------------- /tests/unit/store/test_metadata_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_metadata_store.py -------------------------------------------------------------------------------- /tests/unit/store/test_ndarray_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_ndarray_store.py -------------------------------------------------------------------------------- /tests/unit/store/test_pandas_ndarray_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_pandas_ndarray_store.py -------------------------------------------------------------------------------- /tests/unit/store/test_pickle_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_pickle_store.py -------------------------------------------------------------------------------- /tests/unit/store/test_version_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_version_item.py -------------------------------------------------------------------------------- /tests/unit/store/test_version_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_version_store.py -------------------------------------------------------------------------------- /tests/unit/store/test_version_store_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_version_store_audit.py -------------------------------------------------------------------------------- /tests/unit/store/test_version_store_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/store/test_version_store_utils.py -------------------------------------------------------------------------------- /tests/unit/test_arctic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_arctic.py -------------------------------------------------------------------------------- /tests/unit/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_auth.py -------------------------------------------------------------------------------- /tests/unit/test_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_compress.py -------------------------------------------------------------------------------- /tests/unit/test_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_compression.py -------------------------------------------------------------------------------- /tests/unit/test_decorators_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_decorators_unit.py -------------------------------------------------------------------------------- /tests/unit/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_fixtures.py -------------------------------------------------------------------------------- /tests/unit/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_hooks.py -------------------------------------------------------------------------------- /tests/unit/test_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_hosts.py -------------------------------------------------------------------------------- /tests/unit/test_multi_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_multi_index.py -------------------------------------------------------------------------------- /tests/unit/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/test_util.py -------------------------------------------------------------------------------- /tests/unit/tickstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/tickstore/test_tickstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/tickstore/test_tickstore.py -------------------------------------------------------------------------------- /tests/unit/tickstore/test_toplevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/unit/tickstore/test_toplevel.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/arctic/HEAD/tests/util.py --------------------------------------------------------------------------------