Running a simple hf download Qwen/Qwen3-4B in colab, I keep getting infinite retries with:
WARN Status Code: 500
With RuntimeError: Data processing error: CAS service error : Reqwest Error: HTTP status server error (500 Internal Server Error), domain: ``https://cas-server.xethub.hf.co/reconstructions/a6f5dec111c34cd267ff4fd7889ef961237b30418d123d5b60b2c1fd3cbd3cc7 in the end.
Neither does download work locally.
Anyone else with a similar issue?
Downloading cais/mmlu datasets, I also got 500 Status CodeâŚ
{âtimestampâ:â2025-10-20T07:26:25.509409Zâ,âlevelâ:âWARNâ,âfieldsâ:{âmessageâ:âStatus Code: 500. RetryingâŚâ,ârequest_idâ:â01K80868M30G1GN7QQV2VYSXHFâ},âfilenameâ:â/home/runner/work/xet-core/xet-core/cas_client/src/http_client.rsâ,âline_numberâ:236}
{âtimestampâ:â2025-10-20T07:26:25.509463Zâ,âlevelâ:âWARNâ,âfieldsâ:{âmessageâ:âRetry attempt #0. Sleeping 879.55434ms before the next attemptâ},âfilenameâ:â/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-retry-0.7.0/src/middleware.rsâ,âline_numberâ:171}
Hi, I have same problem..
2025-10-20T07:38:03.814777Z WARN Status Code: 500. RetryingâŚ, request_id: â01K808VJJ5TG7VWFE823WB7E9Bâ
at /home/runner/work/xet-core/xet-core/cas_client/src/http_client.rs:227
2025-10-20T07:38:03.814851Z WARN Retry attempt #0. Sleeping 1.198937597s before the next attempt
at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-retry-0.7.0/src/middleware.rs:171
======================================
However, simply downloading llm models using huggingface-cli download {model_name} works perfectly.
huggingface-cli download {model_name} does not work for me 
2025-10-20T07:47:18.579473Z WARN Status Code: 500. RetryingâŚ, request_id: â01K809CGAP7ZB4QJ1Y3S3J636Aâ | 0.00/99.6M [00:00<?, ?B/s]
at /home/runner/work/xet-core/xet-core/cas_client/src/http_client.rs:220
2025-10-20T07:47:18.579520Z WARN Retry attempt #0. Sleeping 955.2374ms before the next attempt | 0.00/11.4M [00:00<?, ?B/s]
at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-retry-0.7.0/src/middleware.rs:171
2025-10-20T07:47:18.587662Z WARN Status Code: 500. RetryingâŚ, request_id: â01K809CGAWZTSR5S63S4461HM6â
at /home/runner/work/xet-core/xet-core/cas_client/src/http_client.rs:220
2025-10-20T07:47:18.587702Z WARN Retry attempt #0. Sleeping 2.634600073s before the next attempt
at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-retry-0.7.0/src/middleware.rs:171
I solved the issue by disabling xet, like this:
export HF_HUB_DISABLE_XET=1
After setting this environment variable, the download worked perfectly. 
Thank you, you saved me. What is this Environment variable supposed to do ?
@jsulz Xet related issue?
It disables Hugging Faceâs new xet-based large file backend and falls back to the old HTTP download method.
It doesnât work for meâŚ
idk related or not. seems AWS is now in trouble. (of course worldwide)
Disabling the XET backend doesnât seem to work, Iâm getting the exact same error as before â>
RuntimeError: Data processing error: CAS service error : Reqwest Error: HTTP status server error (500 Internal Server Error)
I donât think the issue is solved yet, alas
This has work for me
uv pip install --system âhuggingface_hub[cli]â; \
uv pip uninstall --system hf-xet; \
huggingface-cli download \
Other Hub features also appear to be unstable due to the AWS outage.