You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In version v0.5.1 starts a problem with Request Entity Too Large on save snapshot.
File "/home/airflow/.local/lib/python3.11/site-packages/evidently/ui/managers/projects.py", line 159, in add_snapshot
await self.project_metadata.add_snapshot(project_id, snapshot, blob)
File "/home/airflow/.local/lib/python3.11/site-packages/evidently/ui/workspace/remote.py", line 206, in add_snapshot
return self._request(f"/api/projects/{project_id}/snapshots", "POST", body=snapshot.dict())
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/airflow/.local/lib/python3.11/site-packages/evidently/ui/workspace/remote.py", line 137, in _request
raise EvidentlyServiceError(details)
evidently.ui.errors.EvidentlyServiceError: Request Entity Too Large
Seems it correspond to new version of litestar whitch has this new features and restrict it by default to 10Mb:
Workaround: need add a way to specify increase max request size (snapshots can be much more then 10mb).
The text was updated successfully, but these errors were encountered:
In version v0.5.1 starts a problem with
Request Entity Too Large
on save snapshot.Seems it correspond to new version of litestar whitch has this new features and restrict it by default to 10Mb:
Workaround: need add a way to specify increase max request size (snapshots can be much more then 10mb).
The text was updated successfully, but these errors were encountered: