-
Notifications
You must be signed in to change notification settings - Fork 1
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
DATA LOADING ERROR #2
Comments
Hi @DaniChinwendu , thanks for reaching out. This is related to Polaris and it would be best to open an issue in the Polaris repo. In the meantime, I suspect you're not actually connecting to the Polaris Hub, but have configured your environment to connect to some other S3 compatible store. To test this hypothesis, can you make sure you haven't set any of the following environment variables: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html#using-environment-variables |
I did connect to Polaris hub
…On Wed, Jan 15, 2025 at 9:29 PM Cas Wognum ***@***.***> wrote:
Hi @DaniChinwendu <https://github.com/DaniChinwendu> , thanks for
reaching out. This is related to Polaris and it would be best to open an
issue in the Polaris repo
<https://github.com/polaris-hub/polaris/issues/new?assignees=&labels=bug&projects=&template=bug-report.yml>
.
In the meantime, I suspect you're not actually connecting to the Polaris
Hub, but have configured your environment to connect to some other S3
compatible store.
To test this hypothesis, can you make sure you haven't set any of the
following environment variables:
https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html#using-environment-variables
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVBUGCVET5SL722RK2WWCQ32K4KPHAVCNFSM6AAAAABVIPZ6OKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKOJUGM2DAOJTGQ>
.
You are receiving this because you were mentioned.Message ID:
<asapdiscovery/asap-polaris-blind-challenge-examples/issues/2/2594340934@
github.com>
|
I understand! I meant to say that I think your environment is making you actually connect to a different S3 compatible store. We use |
Am actually working with collab
…On Wed, Jan 15, 2025 at 9:40 PM Cas Wognum ***@***.***> wrote:
I understand! I meant to say that I think your environment is making you
actually connect to a different S3 compatible store. We use boto3 under
the hood, which is used by many projects. You therefore may have configured
those environment variables for another project before.
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVBUGCQOWHJQWC2YM6KANX32K4LZ3AVCNFSM6AAAAABVIPZ6OKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKOJUGM2TEMBUGU>
.
You are receiving this because you were mentioned.Message ID:
<asapdiscovery/asap-polaris-blind-challenge-examples/issues/2/2594352045@
github.com>
|
If that's not the case, I will ask you to create an issue in the Polaris repo. That will prompt you to fill put some additional info that will help the team investigate. |
Ok, I will do that.
…On Wed, Jan 15, 2025 at 9:41 PM Cas Wognum ***@***.***> wrote:
If that's not the case, I will ask you to create an issue in the Polaris
repo. That will prompt you to fill put some additional info that will help
the team investigate.
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVBUGCSQZVL4R25JDZ4PQOT2K4L6JAVCNFSM6AAAAABVIPZ6OKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKOJUGM2TGMJVHA>
.
You are receiving this because you were mentioned.Message ID:
<asapdiscovery/asap-polaris-blind-challenge-examples/issues/2/2594353158@
github.com>
|
Hi, I am experiencing the same error when trying to load competition data, its a bit annoying to have unnecessary hussle..Hope they help us sort out the issue! :) |
I'm also getting this error using CloudFlare object storage in a totally unrelated project, and I can't find this error anywhere else on the internet. Only change I have made is the upgrade from boto3 package version 1.35 to 1.36. It might be related to that. |
Hi @jhud and @srdjanma , thanks for sharing! We're looking into it. For now, I'll close this issue in favour of polaris-hub/polaris#246 . |
FYI - It's due to a breaking change upstream from Polaris (in |
025-01-16 01:22:45.411 | WARNING | polaris.dataset._base:zarr_root:179 - You're loading data from a remote location. If the dataset is small enough, consider caching the dataset first using CompetitionSpecification.cache() for more performant data access.
ClientError Traceback (most recent call last)
/usr/local/lib/python3.11/dist-packages/polaris/hub/storage.py in handle_s3_errors()
45 try:
---> 46 yield
47 except ClientError as e:
15 frames
ClientError: An error occurred (NotImplemented) when calling the GetObject operation: Header 'x-amz-checksum-mode' with value 'ENABLED' not implemented
The above exception was the direct cause of the following exception:
S3StoreException Traceback (most recent call last)
[... skipping hidden 1 frame]
/usr/local/lib/python3.11/dist-packages/polaris/hub/storage.py in handle_s3_errors()
50 raise S3StoreCredentialsExpiredException(f"Error in S3Store: Credentials expired: {e}") from e
51 else:
---> 52 raise S3StoreException(f"Error in S3Store: {e}") from e
53 except BotoCoreError as e:
54 raise S3StoreException(f"Error in S3Store: {e}") from e
S3StoreException: Error in S3Store: An error occurred (NotImplemented) when calling the GetObject operation: Header 'x-amz-checksum-mode' with value 'ENABLED' not implemented
The text was updated successfully, but these errors were encountered: