Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,6 @@ jobs:
run-id: ${{ env.RUN_ID }}
github-token: ${{github.token}}

- name: Skip uploading macos wheels for now
run: |
rm *macos*.whl
continue-on-error: true

- name: Upload to Pypi
run: |
ls
Expand Down
24 changes: 0 additions & 24 deletions CONTRIBUTORS.txt

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ArcticDB is designed from the outset to be resilient; there is no single point o
| --------------------- | - | - |
| Linux (Intel/AMD) | ✔️ | ✔️ |
| Windows (Intel/AMD) | ✔️ | ➖ |
| MacOS | Beta | Beta️ |
| MacOS | ✔️ | ✔️ |

For conda-forge see the [release-info](https://github.com/conda-forge/arcticdb-feedstock/?tab=readme-ov-file#current-release-info).

Expand All @@ -59,7 +59,7 @@ For conda-forge see the [release-info](https://github.com/conda-forge/arcticdb-f
| --------------------- | - | - | - |
| S3 | ✔️ | ✔️ | ✔️ |
| LMDB | ✔️ | ✔️ | ✔️ |
| Azure Blob Storage | ✔️ | ✔️ | |
| Azure Blob Storage | ✔️ | ✔️ | ✔️ |

We have tested against the following S3 backends:
- AWS S3
Expand Down
54 changes: 0 additions & 54 deletions docs/mkdocs/docs/notebooks/ArcticDB_demo_snapshots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -390,60 +390,6 @@
"print(vit.data)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Although it works, we advise not to read snapshot versions directly using the version number\n",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is good advice in general. Although I agree it probably makes more the notebook cleaner to just not mention this feature at all

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it is not supported in V2 anymore :)

"These versions only exist because they are in a snapshot, so it is much more obvious to code to access them via the snapshot.\n",
"\n",
"Accessing snapshot protected versions via the version number leads to code that will fail (if the snapshot is deleted) in a way that is difficult to understand."
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"VersionedItem(symbol='sym_0', library='demo', data=<class 'pandas.core.frame.DataFrame'>, version=1, metadata=None, host='LMDB(path=/users/isys/nclarke/jupyter/arctic/demos/arcticdb_snapshot_demo)')\n",
" col\n",
"0 10\n"
]
}
],
"source": [
"vit = lib.read(\"sym_0\", as_of=1)\n",
"print(vit)\n",
"print(vit.data)"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"ERROR:root:Version not found\n"
]
}
],
"source": [
"# version 0 was not in the snapshot, so it has been removed\n",
"try:\n",
" vit = lib.read(\"sym_0\", as_of=0)\n",
" print(vit)\n",
" print(vit.data)\n",
"except adb.exceptions.NoSuchVersionException:\n",
" logging.error(\"Version not found\")\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down
Loading