hash
stringlengths
40
40
authorName
stringclasses
42 values
authorEmail
stringclasses
41 values
date
timestamp[ms]date
2021-07-26 09:52:55
2025-07-18 10:19:56
subject
stringlengths
11
116
diff
stringlengths
0
987k
cf79aee59cb74b067987238cfbf0be493428b802
Remy
remy@huggingface.co
2025-07-18T10:19:56
fix(infra): resources optimization (#3225)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 18862dd7..b7ca3a2e 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -347,2 +347,2 @@ api: - cpu: 4 - memory: "14Gi" + cpu: "900m" + memory: "4Gi" @@ -350,2 +350,2 @@ api: - cpu: 4 - memory: "14Gi" + cpu: "1500m"...
9efbe6f23800c645e1f4a486d5d32dd2c577237a
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-07-17T20:55:29
Include Audio features in HuggingFace. (#3224)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index cf37c0b0..0922bb65 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -8 +8 @@ from typing import Any, Optional, Union -from datasets im...
03e368d7022cf9d07135d00fcc769a43e34c4f4f
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-07-17T18:15:15
Escape subfields. (#3220)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index 6dfcaacf..cf37c0b0 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -9,0 +10,23 @@ from datasets import ClassLabel, Image, LargeList, ...
9680713930ec0dcb755414debed0de1cdaf03ef1
Arjun Jagdale
142811259+ArjunJagdale@users.noreply.github.com
2025-07-17T15:00:39
refactor(tests): use HfApi.update_repo_settings to simplify gated dataset test setup (#3206)
diff --git a/jobs/cache_maintenance/tests/utils.py b/jobs/cache_maintenance/tests/utils.py index 78ccf145..9c97dd19 100644 --- a/jobs/cache_maintenance/tests/utils.py +++ b/jobs/cache_maintenance/tests/utils.py @@ -8 +8 @@ from pathlib import Path -from typing import Any, Optional, Union +from typing import Literal, Op...
640f1f3c923543d8f6c5bebb185c45d79f00ff48
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-07-15T14:17:39
bump datasets for json (#3222)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index fa10d964..3774e774 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -695,2 +695,2 @@ url = "https://github.com/huggingface/datasets.git" -reference = "c4bdfe84586d3789a9db9cde06e1f054043d5569" -resolved_reference = "c4...
7f717292da41f8ac1cd8e2890f0890d670b7562a
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-07-15T14:15:27
Allow search to download xet files (#3221)
diff --git a/chart/templates/_env/_envDatasetsBased.tpl b/chart/templates/_env/_envDatasetsBased.tpl deleted file mode 100644 index 5ff79854..00000000 --- a/chart/templates/_env/_envDatasetsBased.tpl +++ /dev/null @@ -1,12 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 The HuggingFace Authors. - -{{- ...
49d78b9cdd7dc38ea398ff624a9b2eebbe32b4af
Arjun Dinesh Jagdale
142811259+ArjunJagdale@users.noreply.github.com
2025-07-11T18:31:36
test: add unit tests for get_previous_step_or_raise (#1908) (#3218)
diff --git a/libs/libcommon/tests/test_simple_cache.py b/libs/libcommon/tests/test_simple_cache.py index 11ad0d32..9434fc21 100644 --- a/libs/libcommon/tests/test_simple_cache.py +++ b/libs/libcommon/tests/test_simple_cache.py @@ -31,0 +32 @@ from libcommon.simple_cache import ( + get_previous_step_or_raise, @@ -58 ...
7fa92d676a9986694e82b19d21b7db5d92054df3
Arjun Dinesh Jagdale
142811259+ArjunJagdale@users.noreply.github.com
2025-07-11T13:40:42
refactor(config): replace get_empty_str_list with CONSTANT.copy in ParquetAndInfoConfig (#1522) (#3219)
diff --git a/libs/libcommon/src/libcommon/orchestrator.py b/libs/libcommon/src/libcommon/orchestrator.py index aa8c9039..b21d4738 100644 --- a/libs/libcommon/src/libcommon/orchestrator.py +++ b/libs/libcommon/src/libcommon/orchestrator.py @@ -124,0 +125,3 @@ class Task(ABC): +DEFAULT_JOB_INFOS: list[JobInfo] = [] + + @...
bae070f2cbc3d2e74f1e4f9fa89afd2131b197b1
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-07-09T11:42:18
worker loop timeout (#3216)
diff --git a/services/worker/src/worker/executor.py b/services/worker/src/worker/executor.py index ae798233..a66b3376 100644 --- a/services/worker/src/worker/executor.py +++ b/services/worker/src/worker/executor.py @@ -76 +76 @@ class WorkerExecutor: - return OutputExecutor(start_worker_loop_command, banner, tim...
a8ae77a6980456bb1f37c2c76da1b8c578d6e694
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-07-09T11:31:05
fix fixed length list (#3215)
diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index cdb63553..362cf266 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
94932935611a05a5f9c9de70aced7deb8400562f
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-07-09T10:39:16
Backward compat list (#3214)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index 94a95153..68355768 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -9 +9 @@ env: - poetry-version: "1.8.2" + poetry-version: "2.1.3" diff --git a/.github/workflows/_quality-python.yml b/.gith...
3ec1ccba9315bedc1e77577b820511c7d2d305c1
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-07-07T14:11:43
bump datasets 4 dev (#3210)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 8d499220..ff139b0e 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -672,2 +672,2 @@ url = "https://github.com/huggingface/datasets.git" -reference = "c2490a4f148f8547d7df55daca48512805fc2a32" -resolved_reference = "c2...
057b8afc168f048b6b210e9c9fe21f062890c911
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-07-07T12:54:36
Upgrade to `datasets` 4 (for torchcodec + List) (#3207)
diff --git a/docs/source/filter.md b/docs/source/filter.md index 93e7b632..00a86ec6 100644 --- a/docs/source/filter.md +++ b/docs/source/filter.md @@ -149 +149 @@ For example, here are the `features` and the slice 150-151 of matching `rows` of - "_type":"Sequence" + "_type":"List" diff --git a/doc...
03ada1cd032fd9b4128f1dcd9eda443517e51833
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-06-19T13:34:25
fix max files per repo (#3201)
diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index 242b8743..bc924cf8 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
18ab83985978dfe0976f94243d4c91e01e77ef82
Andrea Francis Soria Jimenez
andrea@huggingface.co
2025-06-14T01:44:30
Try pymupdf for thumbnail (#3200)
diff --git a/jobs/cache_maintenance/poetry.lock b/jobs/cache_maintenance/poetry.lock index 06a13fd5..ec660329 100644 --- a/jobs/cache_maintenance/poetry.lock +++ b/jobs/cache_maintenance/poetry.lock @@ -1185,0 +1186 @@ pymongoarrow = "^1.3.0" +pymupdf = "^1.26.1" @@ -2581,0 +2583,16 @@ test = ["polars", "pytest", "pytz...
f20c5c1b079da24777d86cd1295891ec446ef133
Andrea Francis Soria Jimenez
andrea@huggingface.co
2025-06-10T15:19:04
Try multithreading for Pdf processing in /rows, /search and /filter (#3198)
diff --git a/libs/libapi/src/libapi/rows_utils.py b/libs/libapi/src/libapi/rows_utils.py index 9741b9c8..3ba5c308 100644 --- a/libs/libapi/src/libapi/rows_utils.py +++ b/libs/libapi/src/libapi/rows_utils.py @@ -69 +69 @@ async def transform_rows( - if "Audio(" in str(features) or "Image(" in str(features): + if "...
4e78113aa873df4639fed39994c5cde3bd2eabff
Andrea Francis Soria Jimenez
andrea@huggingface.co
2025-05-29T18:08:15
Temporary disable multi threading for PDFs (#3196)
diff --git a/libs/libapi/src/libapi/rows_utils.py b/libs/libapi/src/libapi/rows_utils.py index 3ba5c308..9741b9c8 100644 --- a/libs/libapi/src/libapi/rows_utils.py +++ b/libs/libapi/src/libapi/rows_utils.py @@ -69 +69 @@ async def transform_rows( - if "Audio(" in str(features) or "Image(" in str(features) or "Pdf(" ...
e785a0fdcd6addc6bb8cb829def261415e744af9
Andrea Francis Soria Jimenez
andrea@huggingface.co
2025-05-29T14:19:25
feat: Thumbnail and PDF for new column type (#3193)
diff --git a/docs/source/openapi.json b/docs/source/openapi.json index f83e9d2b..f5d55a02 100644 --- a/docs/source/openapi.json +++ b/docs/source/openapi.json @@ -394,0 +395,3 @@ + }, + { + "$ref": "#/components/schemas/PdfFeature" @@ -579,0 +583,13 @@ + "PdfFeature": { + "type"...
2d2ed2cdda61471523b6fa6f793790c52780a954
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-05-14T12:59:27
Set xet cache env var (#3194)
diff --git a/services/worker/src/worker/job_runners/_job_runner_with_datasets_cache.py b/services/worker/src/worker/job_runners/_job_runner_with_datasets_cache.py index 59c3925b..890e4ced 100644 --- a/services/worker/src/worker/job_runners/_job_runner_with_datasets_cache.py +++ b/services/worker/src/worker/job_runners/...
2ad0a8eff500d6554c4b6942ba9a5a868e9de180
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-05-12T19:27:58
Set xet cache dir (#3192)
diff --git a/services/worker/src/worker/job_runners/_job_runner_with_datasets_cache.py b/services/worker/src/worker/job_runners/_job_runner_with_datasets_cache.py index 2e020640..59c3925b 100644 --- a/services/worker/src/worker/job_runners/_job_runner_with_datasets_cache.py +++ b/services/worker/src/worker/job_runners/...
779164c5e66f0f97391dabb1684a5bb808acf34d
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-05-07T15:35:45
Enable Xet: update datasets and hfh (#3190)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 1bdf6b08..da16b04b 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -627 +627 @@ name = "datasets" -version = "3.4.1" +version = "3.6.0" @@ -632,2 +632,2 @@ files = [ - {file = "datasets-3.4.1-py3-none-any.whl", has...
488681eb6bf9650b7ccd57bf6c208c6c0e4ff38b
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-05-05T16:50:58
Dont init duckdb cache in workers (#3189)
diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index 896b8254..dd888d54 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -292,32 +291,0 @@ class SplitNamesConfig: -DUCKDB_INDEX_CACHE_DIRECTORY = None -DUCKDB_INDEX_COMMIT_MESSAGE = ...
3b46049c65031ce53b01ea27e9f9d9fb25a97706
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-05-05T14:47:32
Remove duckdb jobs altogether (#3188)
diff --git a/chart/templates/_env/_envWorker.tpl b/chart/templates/_env/_envWorker.tpl index 9bb2e2e2..7b1d1c9d 100644 --- a/chart/templates/_env/_envWorker.tpl +++ b/chart/templates/_env/_envWorker.tpl @@ -73,13 +72,0 @@ -# specific to 'split-duckdb-index' job runner -- name: DUCKDB_INDEX_COMMIT_MESSAGE - value: {{ ....
3f1f5eb14b051293fe0d24fa14c54075b2f61065
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-05-02T15:02:31
Always truncate binary data (#3187)
diff --git a/libs/libcommon/src/libcommon/viewer_utils/features.py b/libs/libcommon/src/libcommon/viewer_utils/features.py index 3c86bf70..95342668 100644 --- a/libs/libcommon/src/libcommon/viewer_utils/features.py +++ b/libs/libcommon/src/libcommon/viewer_utils/features.py @@ -41 +40,0 @@ from libcommon.viewer_utils.a...
252b0884cf7f621ed82d39a519cec7f8389a37b6
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-30T14:36:19
Enable new filter/search on all datasets (#3185)
diff --git a/libs/libcommon/src/libcommon/duckdb_utils.py b/libs/libcommon/src/libcommon/duckdb_utils.py index 223f0610..a4422925 100644 --- a/libs/libcommon/src/libcommon/duckdb_utils.py +++ b/libs/libcommon/src/libcommon/duckdb_utils.py @@ -26,11 +26,2 @@ from libcommon.statistics_utils import ( -DISABLED_DUCKDB_REF_...
11f9d28fd9bb2b940b430614276d3cc9ce2ab268
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-28T16:02:55
Fix empty result in search (#3184)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index 69a4a2ae..9cad438a 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -104 +104,2 @@ async def create_response( - pa_table = pa_table.drop(unsupporte...
a54bdfe65b4638876be26342dc391afcb936e199
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-28T15:43:28
Enable new search/filter (without `refs/convert/duckdb`) for 40% of users/orgs (#3183)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 7d00dd00..4eb3de01 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -17,0 +18 @@ import duckdb +import filelock @@ -267,6 +268,8 @@ async def get_index_file_location_and_build_if_missing( - ...
e7dc22e47749d99da620bc1bd6e207c336adc299
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-28T14:50:14
Return response not ready if dataset indexing is too long (#3182)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 7a418d87..7d00dd00 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -3,0 +4 @@ +import asyncio @@ -8,0 +10,2 @@ import re +import traceback +from collections.abc import Coroutine @@ -11 +14 @@ f...
9d92118aa106748463cf31354f7bc0355d5dd97d
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-24T14:13:52
add two indexes (#3179)
diff --git a/libs/libcommon/src/libcommon/queue/jobs.py b/libs/libcommon/src/libcommon/queue/jobs.py index 17297223..5ca5b322 100644 --- a/libs/libcommon/src/libcommon/queue/jobs.py +++ b/libs/libcommon/src/libcommon/queue/jobs.py @@ -169,0 +170 @@ class JobDocument(Document): + ("priority", "status", "creat...
88fca51a52ad6fd4a22120a1af1b1ea2535c2b51
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-04-23T15:36:40
Use new cr:UInt* data types. (#3160)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index e06b8935..56585100 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -60,4 +60,4 @@ HF_TO_CROISSANT_VALUE_TYPE = { - "uint8": "sc:In...
4df09e52f88434f5c66853b12ddeff72abd8e18f
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-23T15:27:06
Parallelize tokenization to enable fast on-the-fly indexing (#3178)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 6ef566ed..7a418d87 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -18 +18 @@ from huggingface_hub import HfApi -from libcommon.constants import CONFIG_PARQUET_METADATA_KIND, PARQUET_REVISION, ...
8da1e449815245b10264d2fc9974a6d16a3e3a4f
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-18T15:16:33
Enable more datasets to work without `refs/convert/duckdb` (#3177)
diff --git a/libs/libcommon/src/libcommon/duckdb_utils.py b/libs/libcommon/src/libcommon/duckdb_utils.py index 79ea1717..f6cc1bce 100644 --- a/libs/libcommon/src/libcommon/duckdb_utils.py +++ b/libs/libcommon/src/libcommon/duckdb_utils.py @@ -22 +22,10 @@ from libcommon.statistics_utils import ( -DISABLED_DUCKDB_REF_BR...
f11147c1106198bbc15a872f96d4143853f5349b
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-17T10:21:06
Fix lock in duckdb index building in new search/filter (#3176)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 4a5e12c9..6ef566ed 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -236,3 +236,2 @@ async def get_index_file_location_and_build_if_missing( - cache_folder = Path(duckdb_index_file_direct...
5dabb5ab48b62c63ff984d3e36df426b3217dc46
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-17T08:34:59
Fix concurrent duckdb accesses (#3174)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 000316cc..4a5e12c9 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -185,0 +186,3 @@ def build_index_file( + # make sure there is no WAL at the end + con.sql("CHECKPOINT;") + @@ -2...
c7a91ac4c6d27e0442dc38a44a4880538121f289
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-16T13:11:51
Fix duckdb directory (#3172)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 54c84dd3..000316cc 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -96 +96 @@ def build_index_file( - filename: str, + repo_file_location: str, @@ -148,3 +148,4 @@ def build_index_file( -...
9f041a93ff604f8bbb1b5e1825b66c165c6c084a
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-15T13:07:07
Fix features in new search/filter (#3171)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 268d2439..54c84dd3 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -4 +3,0 @@ -import copy @@ -12 +11 @@ from pathlib import Path -from typing import Optional +from typing import Any, Optional ...
402e222c7060b756128c2fe77f3ab19cf1697b3d
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-15T10:17:27
Use config level parquet metadata (#3170)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index 04c92d6d..268d2439 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -332 +331,0 @@ def get_cache_entry_from_parquet_metadata_job( - split: str, @@ -343 +342 @@ def get_cache_entry_from_parque...
d92728f2bcf0cb9bd379f530d570dbacc5caf46e
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-14T15:15:41
foxix parquet metadata again (#3169)
diff --git a/chart/templates/services/search/deployment.yaml b/chart/templates/services/search/deployment.yaml index f1498d70..10d3c5b4 100644 --- a/chart/templates/services/search/deployment.yaml +++ b/chart/templates/services/search/deployment.yaml @@ -30,0 +31,2 @@ spec: + initContainers: + {{ include "i...
9d72f48f47bc776b4087ab006a3a5947fadf82ac
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-14T15:08:15
Missing parquet metadata env (#3168)
diff --git a/chart/templates/services/search/_container.tpl b/chart/templates/services/search/_container.tpl index ccb4004f..5d9f8f05 100644 --- a/chart/templates/services/search/_container.tpl +++ b/chart/templates/services/search/_container.tpl @@ -13,0 +14 @@ + {{ include "envParquetMetadata" . | nindent 2 }} @@ -4...
ff8db33d73fb43ab7735e6c521ace43ee89d55ee
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-14T13:38:27
Don't rely on `refs/convert/duckdb` anymore (#3166)
diff --git a/e2e/tests/test_14_statistics.py b/e2e/tests/test_14_statistics.py index eb9cc28d..4bb623f3 100644 --- a/e2e/tests/test_14_statistics.py +++ b/e2e/tests/test_14_statistics.py @@ -57 +57 @@ def test_statistics_endpoint(normal_user_public_jsonl_dataset: str) -> None: - "histogram": {"bin_edges": [0, 1,...
94e6e8db5eea2d7f37f7d74d4fec92da6e7a48cf
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-04T17:10:24
Fix webhook repo config update (#3167)
diff --git a/services/webhook/src/webhook/routes/webhook.py b/services/webhook/src/webhook/routes/webhook.py index ff2a6b99..3a4c729f 100644 --- a/services/webhook/src/webhook/routes/webhook.py +++ b/services/webhook/src/webhook/routes/webhook.py @@ -65,0 +66 @@ class MoonWebhookV2Payload(TypedDict): + updatedConfig...
94234db29aef7a178318c44f9560ab10446567ee
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-03T12:11:05
Re-enable smart update for private and gated repos (#3164)
diff --git a/libs/libcommon/src/libcommon/orchestrator.py b/libs/libcommon/src/libcommon/orchestrator.py index 472ff3df..aa8c9039 100644 --- a/libs/libcommon/src/libcommon/orchestrator.py +++ b/libs/libcommon/src/libcommon/orchestrator.py @@ -978,5 +978 @@ class SmartDatasetUpdatePlan(Plan): - # Temporary fix fo...
a6389081427d0a2659f37ce158ef289dcfe51055
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-03T10:14:29
workaround smart update for public repos (#3163)
diff --git a/libs/libcommon/src/libcommon/orchestrator.py b/libs/libcommon/src/libcommon/orchestrator.py index 225ca0c7..472ff3df 100644 --- a/libs/libcommon/src/libcommon/orchestrator.py +++ b/libs/libcommon/src/libcommon/orchestrator.py @@ -978 +978,5 @@ class SmartDatasetUpdatePlan(Plan): - headers = build_hf...
9772d1de43cb8f141c547b308f252f37c40530d3
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-02T14:29:46
even less logs in webhook (#3162)
diff --git a/libs/libcommon/src/libcommon/orchestrator.py b/libs/libcommon/src/libcommon/orchestrator.py index fcd3f9f4..225ca0c7 100644 --- a/libs/libcommon/src/libcommon/orchestrator.py +++ b/libs/libcommon/src/libcommon/orchestrator.py @@ -13,0 +14 @@ from huggingface_hub import DatasetCard, HfApi, HfFileSystem, get...
b0bfe1bcabe27687cc544241bb99045b7973d7dc
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-02T14:06:27
fix webhook logs (#3161)
diff --git a/libs/libcommon/src/libcommon/operations.py b/libs/libcommon/src/libcommon/operations.py index c17b0263..9c2455cc 100644 --- a/libs/libcommon/src/libcommon/operations.py +++ b/libs/libcommon/src/libcommon/operations.py @@ -282 +282,4 @@ def smart_update_dataset( - delete_dataset(dataset=dataset, stor...
e11cc85672acb848b42b22c3cc3079d42bf3deaf
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-04-02T12:44:43
Delete ref branches (#3159)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index f5f97212..94a95153 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -49,2 +49 @@ jobs: - PARQUET_AND_INFO_COMMITTER_HF_TOKEN: "hf_app_datasets-server-parquet-converter_token" - ...
a41d18751bcf68952aecf47208bad0b52987166c
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-03-26T02:37:15
enable datetime for string on all datasets (#3158)
diff --git a/services/worker/src/worker/job_runners/split/descriptive_statistics.py b/services/worker/src/worker/job_runners/split/descriptive_statistics.py index 468f9bb9..41dd1d84 100644 --- a/services/worker/src/worker/job_runners/split/descriptive_statistics.py +++ b/services/worker/src/worker/job_runners/split/des...
10dcf3464940c61c910d91dc2ee2305b15482254
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-03-25T15:23:19
Add function to convert a feature name to a valid jsonpath. (#3150)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index 02444fa7..e06b8935 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -3,0 +4 @@ +import re @@ -65,0 +67,10 @@ HF_TO_CROISSANT_VALUE_TYP...
441036c88bbfa6a21aee1e9073697c8dd38a57f6
Polina Kazakova
polina@huggingface.co
2025-03-25T13:59:54
Stats for datetimes (#3007)
diff --git a/docs/source/openapi.json b/docs/source/openapi.json index 214b3204..f83e9d2b 100644 --- a/docs/source/openapi.json +++ b/docs/source/openapi.json @@ -1195 +1195,2 @@ - "image" + "image", + "datetime" @@ -1215,0 +1217,18 @@ + "DatetimeHistogram": { + "type": "object", ...
6b11d655f9455deacbb925dbd17f265b883b3e5d
Remy
remy@huggingface.co
2025-03-21T11:20:19
feat(chart): update ALB rules order (#3155)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 7b71d579..18862dd7 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -376,0 +377 @@ rows: + alb.ingress.kubernetes.io/group.order: "2" @@ -413,0 +415 @@ search: + alb.ingress.kubernetes.io/group.order: "3" @@ -447,0 +450 @@ sseApi: + ...
eac9f864ccb460f0060ba799b523adc013cc3c8b
Remy
remy@huggingface.co
2025-03-21T11:06:37
fix(chart): update TLS certs (#3154)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index cc51335f..7b71d579 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -261 +261 @@ ingress: - alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:us-east-1:707930574880:certificate/971187a3-2baa-40e5-bcae-94d6ec55cd24 + alb.ingress.kuberne...
ac11c3a790a2def71339a35d44566ed08fb97fcc
rtrm
remy.trompier@gmail.com
2025-03-20T14:17:07
fix: reduce alb int name
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 9b0a3f2a..cc51335f 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -305 +305 @@ admin: - alb.ingress.kubernetes.io/load-balancer-name: "hub-datasets-server-prod-internal" + alb.ingress.kubernetes.io/load-balancer-name: "hub-datasets-se...
d335e2a720d4ddff185975c5000edb4f6600afd6
rtrm
remy.trompier@gmail.com
2025-03-20T13:55:44
fix: disable internal ingress by default
diff --git a/chart/values.yaml b/chart/values.yaml index 4b92d521..0e72d3f5 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -567 +567 @@ sseApi: - enabled: true + enabled: false
310c0f8ff14c55a92f8b96f00b347cc2aaceaee9
Remy
remy@huggingface.co
2025-03-20T10:00:28
feat: new internal ALB (#3153)
diff --git a/.github/workflows/trufflehog.yml b/.github/workflows/trufflehog.yml index 9cbbf680..8686dc06 100644 --- a/.github/workflows/trufflehog.yml +++ b/.github/workflows/trufflehog.yml @@ -15,0 +16,2 @@ jobs: + with: + extra_args: --results=verified,unknown diff --git a/chart/env/prod.yaml b/chart/env...
8e2665e0203eed6d4eb8dd9fb880dd62310e27f1
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-03-19T12:09:16
code formatting (#3152)
diff --git a/services/rows/src/rows/routes/rows.py b/services/rows/src/rows/routes/rows.py index cbde5d52..1bf38928 100644 --- a/services/rows/src/rows/routes/rows.py +++ b/services/rows/src/rows/routes/rows.py @@ -81 +81,2 @@ def create_rows_endpoint( - status_code=HTTPStatus.TOO_MANY_REQUESTS +...
1211cce15cbc3ff3b34a8e1d6a625cade8016330
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-03-19T12:06:02
dummy rate limit (#3151)
diff --git a/services/rows/src/rows/routes/rows.py b/services/rows/src/rows/routes/rows.py index cf73f8fa..cbde5d52 100644 --- a/services/rows/src/rows/routes/rows.py +++ b/services/rows/src/rows/routes/rows.py @@ -4,0 +5 @@ import logging +from http import HTTPStatus @@ -76,0 +78,5 @@ def create_rows_endpoint( + ...
695dcced79a30aff00785f6fa01b3420c1dd328a
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-03-18T11:18:32
Include multiple transforms for nested fields. (#3148)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index ed9e50fb..02444fa7 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -67 +67 @@ def get_source( - distribution_name: str, column: st...
c4d24f0a4aebc40af48e4b637d2731e977881f10
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-03-17T22:14:30
Update `datasets` (#3149)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index d3b9de6d..e5b73cfb 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -627 +627 @@ name = "datasets" -version = "3.3.2" +version = "3.4.1" @@ -632,2 +632,2 @@ files = [ - {file = "datasets-3.3.2-py3-none-any.whl", has...
64a95d53c149b88ecaf31428266c00bd3cb9069c
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-03-14T14:15:44
When given, use the sequence len for array_shape (#3144)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index 2c46cd32..ed9e50fb 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -128,0 +129 @@ def feature_to_croissant_field( + array_shap...
de8e69a8832b2d4974b08e4ed7aba1f3304dea52
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-03-07T18:06:08
Update README.md (#3147)
diff --git a/README.md b/README.md index b38b3772..724d4f5c 100644 --- a/README.md +++ b/README.md @@ -16 +16 @@ Documentation: -If the dataset viewer is showing an error on your dataset page, please [open a discussion](https://huggingface.co/docs/hub/repositories-pull-requests-discussions) there, it's the most efficie...
d4c4b85f058329e0c44bdc373726036d0905abca
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-03-07T18:03:46
Less spawning calls / sec (#3146)
diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index c179ab4f..edefcc3f 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -146,2 +146,2 @@ OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER = 10 -OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NU...
34a287968667ae2b56f574ae5ec580001bb38b32
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-03-03T17:05:40
Include more precise field's data types. (#3143)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index 5c1026df..2c46cd32 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -47,7 +47,7 @@ HF_TO_CROISSANT_VALUE_TYPE = { - "float16": "sc:...
60a1954dd4d2ff0c45124eda81eae16d11c9d62b
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-03-03T15:13:24
Use 1.1 specs syntax "isArray" and "arrayShape". (#3141)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index ecb1640c..5c1026df 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -128,4 +128,2 @@ def feature_to_croissant_field( - elif isinsta...
bfb7fd806ad191869d16c57c77837ed9b573309e
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-03-03T13:42:07
Croissant: Update conformsTo to use croissant 1.1 (#3142)
diff --git a/services/worker/src/worker/job_runners/dataset/croissant_crumbs.py b/services/worker/src/worker/job_runners/dataset/croissant_crumbs.py index 36fce6e3..046bd8ae 100644 --- a/services/worker/src/worker/job_runners/dataset/croissant_crumbs.py +++ b/services/worker/src/worker/job_runners/dataset/croissant_cru...
d3f685499ec0f49eebd29138aea9018d604d49e6
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-02-24T14:44:18
Update openapi large_list (#3139)
diff --git a/docs/source/openapi.json b/docs/source/openapi.json index 5844fda0..214b3204 100644 --- a/docs/source/openapi.json +++ b/docs/source/openapi.json @@ -377,0 +378,3 @@ + { + "$ref": "#/components/schemas/LargeListFeature" + }, @@ -519,0 +523,13 @@ + "LargeListFeature": { + ...
ddacb3bb786e2a23e0112413f9e041d9c6f1bece
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-02-24T13:56:06
Support large list (#3138)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index e610e238..d3b9de6d 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -627 +627 @@ name = "datasets" -version = "3.0.3.dev0" +version = "3.3.2" @@ -630,3 +630,5 @@ optional = false -python-versions = ">=3.8.0" -files = [...
61a82797c2925253638aa3290d3a09c994452ba8
ccl-core
91942859+ccl-core@users.noreply.github.com
2025-02-14T17:44:08
Include more value types to the hf to crs mapping (#3136)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index a2eab5c9..28c7097e 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -43,0 +44,2 @@ HF_TO_CROISSANT_VALUE_TYPE = { + "date32": "sc:D...
c598858ef1f579e0c7f89a3333f10e15ba19dd18
Sylvain Lesage
sylvain.lesage@huggingface.co
2025-02-03T15:53:44
squash refs/convert/... branch history after each series of commits (#3131)
diff --git a/.github/workflows/_unit-tests-python.yml b/.github/workflows/_unit-tests-python.yml index ef87e955..7bf907f4 100644 --- a/.github/workflows/_unit-tests-python.yml +++ b/.github/workflows/_unit-tests-python.yml @@ -62 +62 @@ jobs: - run: poetry run python -m pytest -s + run: poetry run python ...
b175525e69dbffd267a94483e7e127ee4aad2604
Sylvain Lesage
sylvain.lesage@huggingface.co
2025-01-23T21:56:20
remove old doc, since we don't install beam anymore (#3130)
diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 561c0d9e..c5aacd8c 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -145,10 +144,0 @@ poetry@1.8.2 env use 3.9.18 -Avoid an issue with Apache beam (https://github.com/python-poetry/poetry/issues/4888#issuecomment-1208408509): - -```bash -poetry confi...
23efc549369fe09f3360a6732dee323cc65a40fd
Sylvain Lesage
sylvain.lesage@huggingface.co
2025-01-17T11:52:46
Remove outdated comment (#3129)
diff --git a/libs/libcommon/src/libcommon/orchestrator.py b/libs/libcommon/src/libcommon/orchestrator.py index b5fef81d..b793025d 100644 --- a/libs/libcommon/src/libcommon/orchestrator.py +++ b/libs/libcommon/src/libcommon/orchestrator.py @@ -1050,2 +1049,0 @@ def smart_set_revision( - /!\ This logic is WIP and shou...
0f134615843a1d2a70d1badd066be2f2e22f5fe5
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-01-16T18:25:33
ignore h5 files (#3127)
diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index f33f2379..58ad5438 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
e8ff010f2d10d470ef402a5d8f0ae0a57026066c
Rui Duarte
9107610+ruijdacd@users.noreply.github.com
2025-01-16T16:27:45
chore: update markdown formatting inside <Tip> (#3126)
diff --git a/docs/source/postgresql.md b/docs/source/postgresql.md index b79fe287..bbb36cdf 100644 --- a/docs/source/postgresql.md +++ b/docs/source/postgresql.md @@ -48 +47,0 @@ select * from squad limit 10; -<Tip> @@ -50 +48,0 @@ Full documentation for the `ai.load_dataset` function can be found [here](https: -</Tip>
e50cb895c7e1eda443b8b402f93b065096e8d1b3
Parag Ekbote
thecoolekbote189@gmail.com
2025-01-16T13:55:27
Fix Warnings in Docker Compose (#3120)
diff --git a/Makefile b/Makefile index bfa50dec..39325fd7 100644 --- a/Makefile +++ b/Makefile @@ -10,0 +11,2 @@ export PORT_REVERSE_PROXY := 8100 +export API_HF_JWT_PUBLIC_KEY_URL := https://hub-ci.huggingface.co/api/keys/jwt +export API_HF_JWT_ADDITIONAL_PUBLIC_KEYS := diff --git a/e2e/Makefile b/e2e/Makefile index 6...
57112049e029f156a87e7b3e40882ed6c57f7701
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-01-06T17:41:27
fix rows schema mismatch (#3125)
diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index 03a47b25..be32482b 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -150 +150 @@ class RowGroupReader: - if not set(columns) <= set(sel...
30ae84d4682f87e1dc1e0a4e7bad6126aa7d6241
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2025-01-06T17:22:27
Fix missing parquet columns (#3124)
diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index 6236b7a8..03a47b25 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -15,0 +16 @@ from datasets.features.features import FeatureType +from data...
0d342b861c2a98f68839b8d70aaad70bff1a0c59
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-12-19T21:04:04
doc: Update inaccessible datasets (#3123)
diff --git a/docs/source/analyze_data.md b/docs/source/analyze_data.md index aed1b866..8d26f807 100644 --- a/docs/source/analyze_data.md +++ b/docs/source/analyze_data.md @@ -11 +11 @@ To demonstrate, this guide will show you an end-to-end example of how to retriev -The [Hub](https://huggingface.co/datasets) is home to...
5e9371a4afd10fc60d9233c678e1ebc93853836d
Matvey Arye
cevian@gmail.com
2024-12-18T21:50:29
Add PostgreSQL as a possible viewer (#3121)
diff --git a/docs/source/_toctree.yml b/docs/source/_toctree.yml index 64b7ab6a..eaaaa170 100644 --- a/docs/source/_toctree.yml +++ b/docs/source/_toctree.yml @@ -46,0 +47,2 @@ + - local: postgresql + title: PostgreSQL diff --git a/docs/source/parquet_process.md b/docs/source/parquet_process.md index 9a...
04f9b1efee148593271bbcc200a0db6252d22a9b
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-18T15:55:25
Minor: explain why we recommend a certain size for row groups (#3122)
diff --git a/docs/source/parquet.md b/docs/source/parquet.md index 12ef6bd5..bd4741bb 100644 --- a/docs/source/parquet.md +++ b/docs/source/parquet.md @@ -203 +203 @@ The Parquet version can be partial in two cases: -- if the dataset is already in Parquet format but it contains row groups bigger than the recommended si...
096abc26d1373d65affa027ff8e491563009ebea
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-13T16:34:10
Fix backfill deleting cache when split names not ready (#3119)
diff --git a/libs/libcommon/src/libcommon/state.py b/libs/libcommon/src/libcommon/state.py index 3daa16b8..5d15445a 100644 --- a/libs/libcommon/src/libcommon/state.py +++ b/libs/libcommon/src/libcommon/state.py @@ -235,6 +235,3 @@ class ConfigState: - unexpected_split_names = set(cache_entries_df["split"].unique...
7540b3284a0e105e8ef9b484d72be1d06185b461
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-10T15:28:56
Log incoherent state error (#3118)
diff --git a/libs/libcommon/src/libcommon/operations.py b/libs/libcommon/src/libcommon/operations.py index 50e4316f..4df7caeb 100644 --- a/libs/libcommon/src/libcommon/operations.py +++ b/libs/libcommon/src/libcommon/operations.py @@ -320 +320 @@ def backfill_dataset( - except IncoherentCacheError: + except Incoh...
6f5aecb15d799aa981f13301ce97e9a4c6a517e7
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-09T14:27:05
More compute for fw2 (#3117)
diff --git a/libs/libcommon/src/libcommon/queue/past_jobs.py b/libs/libcommon/src/libcommon/queue/past_jobs.py index 62e9533c..08667fec 100644 --- a/libs/libcommon/src/libcommon/queue/past_jobs.py +++ b/libs/libcommon/src/libcommon/queue/past_jobs.py @@ -49,0 +50,4 @@ JOB_DURATION_MIN_SECONDS = 30 +# hardcoded list of ...
06415f8bcb14d1e329cdcd27a93c1b246eebb449
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-08T11:40:14
Higher timeout again for smart update (#3116)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 801b6c0e..993505ba 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -309 +309 @@ hf: - timeoutSeconds: "1.5" + timeoutSeconds: "10"
1e0e8f9c3613f19c88a29e8e579699327217aef2
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-08T00:38:49
don't stop when afterjobplan is running (#3115)
diff --git a/services/worker/src/worker/executor.py b/services/worker/src/worker/executor.py index 47f351b6..ae798233 100644 --- a/services/worker/src/worker/executor.py +++ b/services/worker/src/worker/executor.py @@ -152,2 +152,3 @@ class WorkerExecutor: - logging.warning(f"Heartbeat failed for job {jo...
1f8262624e21846c6b059d612688e2d5a9ae77a8
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-08T00:06:21
fix webhook on parquet conversion (#3114)
diff --git a/services/webhook/src/webhook/routes/webhook.py b/services/webhook/src/webhook/routes/webhook.py index a3591def..fc88b88f 100644 --- a/services/webhook/src/webhook/routes/webhook.py +++ b/services/webhook/src/webhook/routes/webhook.py @@ -93 +93,5 @@ def process_payload( - if event == "update" and ge...
da2750d64c447d0a007d0d0626eae41052b8b56a
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-07T23:54:12
higher timeout (#3113)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 7eb9ac6b..801b6c0e 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -280 +280 @@ admin: - hfTimeoutSeconds: "1.5" + hfTimeoutSeconds: "10"
43272b9872759a0402256f9afb82b5f7b9521c0e
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-07T23:29:10
more configs we said (#3112)
diff --git a/chart/values.yaml b/chart/values.yaml index b1897305..b63664c5 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -231 +231 @@ configNames: - maxNumber: 3_000 + maxNumber: 4_000
f00ed10a38cf0661a6ddb0e7eccaee54fa6de548
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-07T23:18:49
Don't recompute on private->public for pro/enterprise (#3111)
diff --git a/services/webhook/src/webhook/routes/webhook.py b/services/webhook/src/webhook/routes/webhook.py index 0df82369..a3591def 100644 --- a/services/webhook/src/webhook/routes/webhook.py +++ b/services/webhook/src/webhook/routes/webhook.py @@ -42,0 +43 @@ class _MoonWebhookV2PayloadRepo(TypedDict): + private:...
05cf9f4656303c544b11b501cdddadc1e9074ceb
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-07T22:48:00
allow more configs (#3110)
diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index 08477cf9..c179ab4f 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -261 +261 @@ class NumbaConfig: -CONFIG_NAMES_MAX_NUMBER = 3_000 +CONFIG_NAMES_MAX_NUMBER = 4_000
eef00c2d3d1b35e6ab7365a015a20a65107cd8e7
Caleb Fahlgren
cfahlgren1@gmail.com
2024-12-06T15:26:30
AudioCell - set audio type to string (#3109)
diff --git a/docs/source/openapi.json b/docs/source/openapi.json index 2e90a0ca..5844fda0 100644 --- a/docs/source/openapi.json +++ b/docs/source/openapi.json @@ -757,2 +757 @@ - "type": "string", - "enum": ["audio/wav", "audio/mpeg", "audio/ogg"] + "type": "string" @@ -777 +776 @...
539b43775760f68f48d6df252ebef6e14c94edb6
ccl-core
91942859+ccl-core@users.noreply.github.com
2024-12-03T17:38:40
Avoid redundant names/descriptions (#3106)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index d22cd12d..a2eab5c9 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -79,2 +78,0 @@ def feature_to_croissant_field( - "name"...
282364e426b3c07e1a3e79b1b40a281fdf102f89
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-12-03T17:23:30
Fix excluded binary column in rows (#3108)
diff --git a/services/rows/src/rows/routes/rows.py b/services/rows/src/rows/routes/rows.py index 14187118..f1e6768c 100644 --- a/services/rows/src/rows/routes/rows.py +++ b/services/rows/src/rows/routes/rows.py @@ -6,0 +7 @@ from typing import Literal, Optional, Union +from datasets import Features @@ -99 +100 @@ def c...
1886a85a89840536b9e6eca4a97b1ce7488450a9
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-11-19T14:14:07
bump croissant job version (#3105)
diff --git a/libs/libcommon/src/libcommon/processing_graph.py b/libs/libcommon/src/libcommon/processing_graph.py index 2a6810f8..10805df0 100644 --- a/libs/libcommon/src/libcommon/processing_graph.py +++ b/libs/libcommon/src/libcommon/processing_graph.py @@ -718 +718 @@ specification: ProcessingGraphSpecification = { -...
238922012633f52f100bfaa218751796d5842acc
ccl-core
91942859+ccl-core@users.noreply.github.com
2024-11-18T15:45:16
Include dictionary features to croissant dataset definitions. (#3102)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index d9e40353..d22cd12d 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -5 +5 @@ from collections.abc import Mapping -from typing import A...
a7f42bba268f208764d9420f90745de193ca67f2
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-10-30T14:28:04
fix typo in pandas example code (#3099)
diff --git a/services/worker/src/worker/job_runners/dataset/compatible_libraries.py b/services/worker/src/worker/job_runners/dataset/compatible_libraries.py index a9af8dd2..e86f4317 100644 --- a/services/worker/src/worker/job_runners/dataset/compatible_libraries.py +++ b/services/worker/src/worker/job_runners/dataset/c...
b0955cc8350a98b13b979977a8c66fa2d4877a58
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-10-30T12:12:30
Store video urls in parquet (#3098)
diff --git a/libs/libcommon/src/libcommon/viewer_utils/asset.py b/libs/libcommon/src/libcommon/viewer_utils/asset.py index 402f287d..fd54657c 100644 --- a/libs/libcommon/src/libcommon/viewer_utils/asset.py +++ b/libs/libcommon/src/libcommon/viewer_utils/asset.py @@ -155 +155 @@ def create_video_file( - else: + el...
6115b888f7cf2803742376e4bc0ecd7e2a674493
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-10-30T10:56:42
Add video to openapi (#3097)
diff --git a/docs/source/openapi.json b/docs/source/openapi.json index b4a618ed..2e90a0ca 100644 --- a/docs/source/openapi.json +++ b/docs/source/openapi.json @@ -388,0 +389,3 @@ + }, + { + "$ref": "#/components/schemas/VideoFeature" @@ -560,0 +564,13 @@ + "VideoFeature": { + "t...
9569e2a428eac4618e87bbcae592b2e4a8ed479d
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-10-29T18:43:02
fix missing slash (#3096)
diff --git a/libs/libcommon/src/libcommon/url_preparator.py b/libs/libcommon/src/libcommon/url_preparator.py index c4a1d1c9..777af908 100644 --- a/libs/libcommon/src/libcommon/url_preparator.py +++ b/libs/libcommon/src/libcommon/url_preparator.py @@ -102 +102 @@ class URLPreparator(ABC): - url = url.replace(...
1262fdf3339a002b591e097baa0dc2078df3a817
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-10-29T18:26:47
Render first rows video urls (#3095)
diff --git a/libs/libapi/src/libapi/rows_utils.py b/libs/libapi/src/libapi/rows_utils.py index 90a0bee4..9741b9c8 100644 --- a/libs/libapi/src/libapi/rows_utils.py +++ b/libs/libapi/src/libapi/rows_utils.py @@ -69 +69 @@ async def transform_rows( - if "Audio(" in str(features) or "Image(" in str(features) or "Video(...
b0906baef73a3bc0670e006f0605787f2ad712b8
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-10-29T17:46:47
Fix decord import (#3094)
diff --git a/libs/libcommon/src/libcommon/viewer_utils/features.py b/libs/libcommon/src/libcommon/viewer_utils/features.py index f60d7a50..7eeeadcf 100644 --- a/libs/libcommon/src/libcommon/viewer_utils/features.py +++ b/libs/libcommon/src/libcommon/viewer_utils/features.py @@ -9,0 +10 @@ from zlib import adler32 +impo...
d126cde90f1ecc31ebec24774e03302079618de4
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-10-29T17:44:31
Increase executor time out for staging (#3093)
diff --git a/services/worker/src/worker/executor.py b/services/worker/src/worker/executor.py index c19d2998..47f351b6 100644 --- a/services/worker/src/worker/executor.py +++ b/services/worker/src/worker/executor.py @@ -76 +76 @@ class WorkerExecutor: - return OutputExecutor(start_worker_loop_command, banner, tim...