Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs for 0.4.15 ( workspace_project.md ) #990

Merged
merged 1 commit into from
Feb 12, 2024
Merged
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
4 changes: 2 additions & 2 deletions docs/book/monitoring/workspace_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ The rest of the workdpace functionality and methods are the same.

## Remote snapshot storage

You can also save `snapshots` in a remote data store and access it from the UI service. To connect to data stores, Evidently uses `fsspec` that allows accessing data on remote file systems via a standard Python interface. You can verify supported data stores in the [Fsspec documentation](https://filesystem-spec.readthedocs.io/en/latest/api.html#built-in-implementations
You can also save `snapshots` in a remote data store and access it from the UI service. To connect to data stores, Evidently uses `fsspec` that allows accessing data on remote file systems via a standard Python interface. You can verify supported data stores in the [Fsspec documentation](https://filesystem-spec.readthedocs.io/en/latest/api.html#built-in-implementations](https://filesystem-spec.readthedocs.io/en/latest/api.html#other-known-implementations
).

For example, to read snapshots from an S3 bucket, you must specify environment variables:
For example, to read snapshots from an S3 bucket (in this example we have MinIO running on localhost:9000), you must specify environment variables:

```
FSSPEC_S3_ENDPOINT_URL=http://localhost:9000/
Expand Down