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
4a9d68235a7ec3f355e36ea46adbbdb06d785c82
Remy
remy@huggingface.co
2024-05-15T19:52:04
feat(chart): expose all services through ALB (#2713)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 695be056..6fe1e330 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -304,0 +305,5 @@ admin: + ingress: + enabled: true + annotations: + alb.ingress.kubernetes.io/group.order: "1" + alb.ingress.kubernetes.io/target-node-labels: ro...
58c3ce96dd714c3b1b06abedd1afcf7a250d5edc
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-15T18:57:31
remove storage-admin (#2808)
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 098ee37e..a11db55d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -38,2 +37,0 @@ jobs: - - directory: services - project: storage-admin @@ -125,2 +122,0 @@ jobs: - storageAdmin: - ...
2c69f290de3282ad56e83566dc96f87361aab253
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-15T13:31:30
remove unnecessary code (#2807)
diff --git a/libs/libapi/src/libapi/utils.py b/libs/libapi/src/libapi/utils.py index 9967af1c..78ea6dce 100644 --- a/libs/libapi/src/libapi/utils.py +++ b/libs/libapi/src/libapi/utils.py @@ -15 +15,8 @@ from libcommon.orchestrator import has_pending_ancestor_jobs -from libcommon.simple_cache import CACHED_RESPONSE_NOT_...
4740508610183c6f241641e17d157ee6e7006a88
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-15T12:12:16
pufanyi/MIMICIT is now data-only (#2805)
diff --git a/chart/values.yaml b/chart/values.yaml index b36d46a4..b583867b 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -86 +86 @@ common: - datasetScriptsAllowList: "{{ALL_DATASETS_WITH_NO_NAMESPACE}},hf-internal-testing/dataset_with_script,togethercomputer/RedPajama-Data-1T,togethercomputer/RedPajama-D...
3760d8b7b3e84aed5f536ae8bda2ae1a1548f022
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-05-14T18:42:51
Add missing comment (#2802)
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 8632e3bd..893cfae8 100644 --- a/services/worker/src/worker/job_runners/dataset/compatible_libraries.py +++ b/services/worker/src/worker/job_runners/dataset/c...
af80a2486ffed3090ec08bd4f27f938848bec942
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-14T12:48:05
Update ruff CI dependency from 0.2.2 to 0.4.4 (#2801)
diff --git a/e2e/poetry.lock b/e2e/poetry.lock index 6ce411ba..13a7067a 100644 --- a/e2e/poetry.lock +++ b/e2e/poetry.lock @@ -903 +903 @@ name = "ruff" -version = "0.2.2" +version = "0.4.4" @@ -908,17 +908,17 @@ files = [ - {file = "ruff-0.2.2-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.w...
3088a16a6da5dcb2cc98e4db75c4c78658f9b8f5
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-14T10:00:58
limit logs to 5000 characters (#2789)
diff --git a/libs/libcommon/src/libcommon/log.py b/libs/libcommon/src/libcommon/log.py index 4f5e15f3..77addf36 100644 --- a/libs/libcommon/src/libcommon/log.py +++ b/libs/libcommon/src/libcommon/log.py @@ -8 +8 @@ def init_logging(level: int = logging.INFO) -> None: - logging.basicConfig(level=level, format="%(leve...
c91ccd3139312c15ef4e6412087c2d28d6cdd62d
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-14T04:49:14
Add lock-no-update command to Makefile (#2790)
diff --git a/tools/Python.mk b/tools/Python.mk index 36ffeac8..05aefeff 100644 --- a/tools/Python.mk +++ b/tools/Python.mk @@ -15,0 +16,6 @@ lock: +.PHONY: lock-no-update +lock-no-update: + rm -rf .venv/ + $(POETRY) lock --no-update + $(POETRY) install +
93252dd75cea7113a42e62c972081471b9e7fbee
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-05-13T18:03:43
Catch DatasetGenerationCastError and show details (#2796)
diff --git a/libs/libcommon/src/libcommon/exceptions.py b/libs/libcommon/src/libcommon/exceptions.py index 1ebac183..21f301c1 100644 --- a/libs/libcommon/src/libcommon/exceptions.py +++ b/libs/libcommon/src/libcommon/exceptions.py @@ -80,0 +81,2 @@ CacheableErrorCode = Literal[ + "DatasetGenerationError", + "Data...
3e4f278a65c04f239dfb26823493d1fda2800d53
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-13T13:28:07
Enclose column names in double quotes in filter docs and tests (#2795)
diff --git a/docs/source/filter.md b/docs/source/filter.md index 5a53ffdc..05c4b5c8 100644 --- a/docs/source/filter.md +++ b/docs/source/filter.md @@ -24 +24 @@ The `where` parameter must be expressed as a comparison predicate, which can be: -- a simple predicate composed of a column name, a comparison operator, and a ...
a8cd9393116c1b9a6283b46e4926b7ecd145f36b
Polina Kazakova
polina@huggingface.co
2024-05-13T12:00:59
Fix image stats when image column type is bytes, not struct (#2793)
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 183ea7f9..e15fd863 100644 --- a/services/worker/src/worker/job_runners/split/descriptive_statistics.py +++ b/services/worker/src/worker/job_runners/split/des...
6fb30a0f21e0be5f7140cda422969c4cb3d4b440
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-05-10T15:17:52
fix: Validate and get compression ratio if available row groups (#2791)
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 2aca481e..b9fa63b4 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
54196d5dd3e78872ec7b1d4bd16295240ce4950e
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-09T06:59:00
Update datasets 2.19.1 with hotfix to shorten long logs (#2783)
diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml index 97c012d0..36bd80fa 100644 --- a/.github/workflows/_quality-python.yml +++ b/.github/workflows/_quality-python.yml @@ -59 +59 @@ jobs: - # ^ 20240506 - disabled until we upgrade to huggingface-hub@0.23 + # ^ 202405...
c7b57f25fb94890558936ca192c092a28a450189
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-07T15:55:27
test info.features once they are filled (#2787)
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 6c223fdb..2aca481e 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
c4132a88f2e14b3ad5df794132dd143a8d3b8393
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-07T13:50:10
raise if a column name has more than 500 characters (#2786)
diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index 72a35464..5df9d1b2 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -70,0 +71 @@ MAX_NUM_ROWS_PER_PAGE = 100 +MAX_COLUMN_NAME_LENGTH = 500 diff --git a/libs/l...
5aa26c87275c80129134691a84df56e34737b1b4
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-05-07T12:51:10
Set max number of splits (#2776)
diff --git a/libs/libcommon/src/libcommon/exceptions.py b/libs/libcommon/src/libcommon/exceptions.py index 02457f1e..63632542 100644 --- a/libs/libcommon/src/libcommon/exceptions.py +++ b/libs/libcommon/src/libcommon/exceptions.py @@ -89,0 +90 @@ CacheableErrorCode = Literal[ + "DatasetWithTooManySplitsError", @@ -2...
5a6ee156102be8e88f744454cdf5d8301da1ddbe
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-05-07T09:22:52
Use huggingface-hub with paths-info fix (#2781)
diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml index f3c04d8a..97c012d0 100644 --- a/.github/workflows/_quality-python.yml +++ b/.github/workflows/_quality-python.yml @@ -57,2 +57,3 @@ jobs: - - name: Run pip-audit - run: bash -c "poetry run pip-audit --ignore-vul...
d9c82207daaed02deae55b26106f415c9fd95be2
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-07T08:51:41
Update jinja2 to 3.1.4 to fix vulnerability (#2785)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 75e1c4c8..ea8dd12b 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1286 +1286 @@ name = "jinja2" -version = "3.1.3" +version = "3.1.4" @@ -1291,2 +1291,2 @@ files = [ - {file = "Jinja2-3.1.3-py3-none-any.whl", has...
01222be3a0df527076f06898966f6687ea7448da
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-07T08:25:04
Update werkzeug to 3.0.3 to fix vulnerability (#2784)
diff --git a/libs/libapi/poetry.lock b/libs/libapi/poetry.lock index 7b2204d2..71f43628 100644 --- a/libs/libapi/poetry.lock +++ b/libs/libapi/poetry.lock @@ -2913 +2913 @@ name = "werkzeug" -version = "3.0.1" +version = "3.0.3" @@ -2918,2 +2918,2 @@ files = [ - {file = "werkzeug-3.0.1-py3-none-any.whl", hash = "sha...
95527c2f1f0b8f077ed9ec74d3c75e45dbc1d00a
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-06T12:04:00
Update datasets to 2.19.1 (#2778)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 5d427d9c..75e1c4c8 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -620 +620 @@ name = "datasets" -version = "2.19.0" +version = "2.19.1" @@ -625,2 +625,2 @@ files = [ - {file = "datasets-2.19.0-py3-none-any.whl", ...
4ad3e1677bbedf1524753fcd7e617e37d6458f7b
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-06T10:05:51
Update tqdm to >= 4.66.3 to fix vulnerability (#2774)
diff --git a/docs/poetry.lock b/docs/poetry.lock index 538363a0..24d90c17 100644 --- a/docs/poetry.lock +++ b/docs/poetry.lock @@ -628 +628 @@ name = "tqdm" -version = "4.64.1" +version = "4.66.4" @@ -631 +631 @@ optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" +python-versions = ">=3.7" @@ -...
9a7a3c06cdcc0de94a636e9e83a6eab2dab5d309
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-03T13:36:09
block mcding-org/* datasets (#2771)
diff --git a/chart/values.yaml b/chart/values.yaml index 24bb29f6..b36d46a4 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -82 +82 @@ common: - blockedDatasets: "open-llm-leaderboard/*,lunaluan/*,atom-in-the-universe/*,cot-leaderboard/cot-eval-traces,mitermix/yt-links" + blockedDatasets: "open-llm-leaderbo...
4afa2ce2610f80626f4480d118f7562fc4972ef9
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-03T13:35:04
support more than 10k parquet files in config-parquet-metadata (#2770)
diff --git a/services/worker/src/worker/job_runners/config/parquet_metadata.py b/services/worker/src/worker/job_runners/config/parquet_metadata.py index 52149b8e..96007458 100644 --- a/services/worker/src/worker/job_runners/config/parquet_metadata.py +++ b/services/worker/src/worker/job_runners/config/parquet_metadata....
906fec536918231e0fb13598762b5e0db7676133
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-05-03T11:14:06
Allow sorting by column (#2691)
diff --git a/docs/source/filter.md b/docs/source/filter.md index 7fc7b874..5a53ffdc 100644 --- a/docs/source/filter.md +++ b/docs/source/filter.md @@ -18,0 +19 @@ The `/filter` endpoint accepts the following query parameters: +- `orderby`: the order-by clause @@ -41,0 +43,3 @@ either the string "name" column is equal t...
3ace46189d9f201d4c9e234c702e91c1392dcf95
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-05-03T08:49:39
Delete the cache entries before backfilling again if cache is incoherent (inexisting config or split names) (#2769)
diff --git a/libs/libcommon/src/libcommon/operations.py b/libs/libcommon/src/libcommon/operations.py index dd84b1db..dd16d7f0 100644 --- a/libs/libcommon/src/libcommon/operations.py +++ b/libs/libcommon/src/libcommon/operations.py @@ -25,0 +26 @@ from libcommon.orchestrator import TasksStatistics, backfill, get_revisio...
17167bfba33f72a458b3dae94d99712671e19e1b
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-05-02T14:11:06
Index Translations and TranslationVariableLanguages data type for search (#2764)
diff --git a/services/worker/src/worker/job_runners/split/duckdb_index.py b/services/worker/src/worker/job_runners/split/duckdb_index.py index 9c312c8b..d389f4a2 100644 --- a/services/worker/src/worker/job_runners/split/duckdb_index.py +++ b/services/worker/src/worker/job_runners/split/duckdb_index.py @@ -11 +11 @@ imp...
fd9495e84c9db2593d60a6ad4781ddbd7c74714f
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-30T15:14:22
Fix size in tests (#2760)
diff --git a/services/worker/tests/fixtures/hub.py b/services/worker/tests/fixtures/hub.py index 42eafdff..4cfdd107 100644 --- a/services/worker/tests/fixtures/hub.py +++ b/services/worker/tests/fixtures/hub.py @@ -550 +550 @@ def create_dataset_info_response_for_csv(dataset: str, config: str) -> Any: - ...
94981e0d5f53967c152470a0b0cfd5229bb932af
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-30T13:39:37
Set number of retries per error code (#2758)
diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index 6dc2d8e4..72a35464 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -22 +21,0 @@ LOCK_TTL_SECONDS_TO_WRITE_ON_GIT_BRANCH = 3600 # 1 hour -MAX_FAILED_RUNS = 3...
790e9b73dbb23e8d2716f48135a3ce1ab2f84239
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-30T13:05:15
Adding large_string to duckdb-index worker and tests (#2755)
diff --git a/services/worker/src/worker/job_runners/split/duckdb_index.py b/services/worker/src/worker/job_runners/split/duckdb_index.py index 72f84abe..9c312c8b 100644 --- a/services/worker/src/worker/job_runners/split/duckdb_index.py +++ b/services/worker/src/worker/job_runners/split/duckdb_index.py @@ -70 +70 @@ def...
9d4d0d2e69301e5eee3b68a889dd22c7cbe96642
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-26T16:23:58
Update DatasetWithScriptNotSupportedError message suggesting CLI (#2747)
diff --git a/libs/libcommon/src/libcommon/exceptions.py b/libs/libcommon/src/libcommon/exceptions.py index 67124789..02457f1e 100644 --- a/libs/libcommon/src/libcommon/exceptions.py +++ b/libs/libcommon/src/libcommon/exceptions.py @@ -535 +535,6 @@ class DatasetWithScriptNotSupportedError(CacheableError): - def __in...
969b348c837b0a6b0f8c2a64169e8bed33bb2348
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-25T20:44:35
Add timeout to hffs requests (#2752)
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 2312d6dd..020abe97 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
6c4e166fb9d40038e7491550a02a8da0645baef5
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-25T20:41:31
Re enable signal handling (#2751)
diff --git a/services/worker/src/worker/executor.py b/services/worker/src/worker/executor.py index 85c6e14c..10b61959 100644 --- a/services/worker/src/worker/executor.py +++ b/services/worker/src/worker/executor.py @@ -5,0 +6 @@ import os +import signal @@ -84 +84,0 @@ class WorkerExecutor: - exceptions = [] @@ ...
f478faec372ec5461e605e892710be7393fdbeb0
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-25T16:22:57
Remove sleep logs (#2750)
diff --git a/libs/libcommon/src/libcommon/utils.py b/libs/libcommon/src/libcommon/utils.py index 523a7fff..854068f9 100644 --- a/libs/libcommon/src/libcommon/utils.py +++ b/libs/libcommon/src/libcommon/utils.py @@ -181 +181 @@ class retry: - logging.info(f"Sleep during {duration} seconds to preventiv...
d5490094f0a9e2ec945eef9c835efe202387b44b
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-25T16:15:48
Disable signal handling (temporarily for fineweb) (#2749)
diff --git a/services/worker/src/worker/executor.py b/services/worker/src/worker/executor.py index 29e8d507..85c6e14c 100644 --- a/services/worker/src/worker/executor.py +++ b/services/worker/src/worker/executor.py @@ -6 +5,0 @@ import os -import signal @@ -106,2 +105,3 @@ class WorkerExecutor: - loop.add_signal...
f0be2ac095a98f1242309d69f5ecd0fbc0cfdf96
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-25T13:31:48
Update compatible_libraries.py (#2746)
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 3f16de29..8632e3bd 100644 --- a/services/worker/src/worker/job_runners/dataset/compatible_libraries.py +++ b/services/worker/src/worker/job_runners/dataset/c...
6aec22dc33cac3d45cc66a12f564001a56f987a6
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-25T10:26:36
More logs for crashes (#2744)
diff --git a/services/worker/src/worker/executor.py b/services/worker/src/worker/executor.py index 5268e8cf..29e8d507 100644 --- a/services/worker/src/worker/executor.py +++ b/services/worker/src/worker/executor.py @@ -95,0 +96 @@ class WorkerExecutor: + logging.exception(f"Executor got exception {context=}"...
7209bbca1d8a0a15b162891cc4dd97f30aa12d4a
Polina Kazakova
polina@huggingface.co
2024-04-24T14:02:26
Hardcode number of bins in histogram instead of env var (#2743)
diff --git a/chart/templates/_env/_envWorker.tpl b/chart/templates/_env/_envWorker.tpl index 468fb35c..b7faa1bf 100644 --- a/chart/templates/_env/_envWorker.tpl +++ b/chart/templates/_env/_envWorker.tpl @@ -109,2 +108,0 @@ -- name: DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS - value: {{ .Values.descriptiveStatistics.his...
13a2c12b7a42593f1b2f135fad5ee1c11c5d0088
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-24T13:31:26
Update datasets to 2.19.0 and fsspec to 2024.3.1 (#2740)
diff --git a/docs/poetry.lock b/docs/poetry.lock index b3be94e7..538363a0 100644 --- a/docs/poetry.lock +++ b/docs/poetry.lock @@ -234 +234 @@ name = "fsspec" -version = "2023.10.0" +version = "2024.3.1" @@ -239,2 +239,2 @@ files = [ - {file = "fsspec-2023.10.0-py3-none-any.whl", hash = "sha256:346a8f024efeb749d2a5f...
27cfa96e4d27831b1d8cccdf51a2364f37cedaab
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-20T12:18:16
Remove remaining DatasetWithTooManyParquetFilesError (#2741)
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 52f8fb3c..79029611 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
4039f33ef447a0582612ac42944998f8c9e1d883
dependabot[bot]
49699333+dependabot[bot]@users.noreply.github.com
2024-04-19T12:34:43
Update aiohttp from 3.9.3 to 3.9.4 across 11 directories (#2736)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 3c2ad2b3..c3ca6a82 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -37 +37 @@ name = "aiohttp" -version = "3.9.3" +version = "3.9.4" @@ -42,76 +42,76 @@ files = [ - {file = "aiohttp-3.9.3-cp310-cp310-macosx_10_9_un...
73d7c5b563fa4ab701e2fde5e439fa594df671dd
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-19T09:26:21
Block dataset (#2738)
diff --git a/chart/values.yaml b/chart/values.yaml index f2468b10..24bb29f6 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -82 +82 @@ common: - blockedDatasets: "open-llm-leaderboard/*,lunaluan/*,atom-in-the-universe/*,cot-leaderboard/cot-eval-traces" + blockedDatasets: "open-llm-leaderboard/*,lunaluan/*,a...
88d8b4ac2faba920a8b475ed85b22977092283c7
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-18T15:23:03
Change search resources (#2735)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 7464d1ba..d94bf948 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -380 +380 @@ search: - replicas: 4 + replicas: 3 @@ -393 +393 @@ search: - memory: "30Gi" + memory: "250Gi" @@ -395,2 +395,2 @@ search: - cpu: 16 - memory: ...
b52414d7ccb974ada66edc0cc3fec77720ef6edc
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-18T14:43:21
Fix search storage cleaning (#2734)
diff --git a/jobs/cache_maintenance/README.md b/jobs/cache_maintenance/README.md index eef17ea4..3deaa262 100644 --- a/jobs/cache_maintenance/README.md +++ b/jobs/cache_maintenance/README.md @@ -11 +10,0 @@ Available actions: -- `clean-directory`: clean obsolete files/directories for a given path @@ -19 +18 @@ The scri...
c7fb2378c7dd9128461d0eb6671638ae0ba809cd
Polina Kazakova
polina@huggingface.co
2024-04-17T13:38:01
Stats for images (#2712)
diff --git a/docs/source/openapi.json b/docs/source/openapi.json index 8099fa32..31e8921f 100644 --- a/docs/source/openapi.json +++ b/docs/source/openapi.json @@ -1101 +1101,2 @@ - "audio" + "audio", + "image" @@ -6234,0 +6236,83 @@ + }, + "A split (Matthijs/...
abca7423d44f6e72e4915931e6a4b376ef2ffd1b
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-17T10:02:11
create the directory if it does not exist when checking disk space (#2733)
diff --git a/libs/libapi/src/libapi/duckdb.py b/libs/libapi/src/libapi/duckdb.py index f4065fd1..a466494f 100644 --- a/libs/libapi/src/libapi/duckdb.py +++ b/libs/libapi/src/libapi/duckdb.py @@ -78 +78,6 @@ def check_available_disk_space(path: StrPath, required_space: int) -> None: - disk_stat = os.statvfs(path) + ...
3a8fff724ed374b2ba13c3e8b92fdfb43fb35700
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-17T09:42:23
Set non-package mode (#2731)
diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml index b83a89db..f3c04d8a 100644 --- a/.github/workflows/_quality-python.yml +++ b/.github/workflows/_quality-python.yml @@ -43,4 +43,4 @@ jobs: - - name: Run ruff linter on src - run: poetry run ruff check src - ...
a489c0b6ad4e5a78b2670679abbfab93f9be5742
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-16T13:58:25
Search service with local storage (#2701)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index f8bd5959..7464d1ba 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -230,10 +229,0 @@ backfillRetryableErrors: -cleanDuckdbIndexCache: - nodeSelector: - role-datasets-server: "true" - expiredTimeIntervalSeconds: 259_200 # 3 days - -cleanDuck...
6de4bbfe25dd858a2416809cf6de00aa04659e69
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-16T13:14:45
Set s3fs max_paths (#2730)
diff --git a/libs/libcommon/src/libcommon/storage_client.py b/libs/libcommon/src/libcommon/storage_client.py index 35ddfaad..8b650786 100644 --- a/libs/libcommon/src/libcommon/storage_client.py +++ b/libs/libcommon/src/libcommon/storage_client.py @@ -60,0 +61 @@ class StorageClient: + max_paths=100, # t...
eeaf9baba55a20857cd889626116b8ec7cd4c0ba
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-16T11:44:06
Update huggingface-hub to 0.22.2 (#2729)
diff --git a/docs/poetry.lock b/docs/poetry.lock index 7e3ffe06..b3be94e7 100644 --- a/docs/poetry.lock +++ b/docs/poetry.lock @@ -324 +324 @@ name = "huggingface-hub" -version = "0.18.0" +version = "0.22.2" @@ -329,2 +329,2 @@ files = [ - {file = "huggingface_hub-0.18.0-py3-none-any.whl", hash = "sha256:ee0b6b68acb...
d32bccf72a20e3e55f8bce9ae13d047b53a87cfe
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-16T10:24:32
Update Poetry to 1.8.2 to align with Dependabot (#2684)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index ec53ddea..665145dd 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -9 +9 @@ env: - poetry-version: "1.7.1" + poetry-version: "1.8.2" diff --git a/.github/workflows/_quality-python.yml b/.gith...
2f47678f16a8cdd724e9950e2fa0535b36ac3417
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-16T09:39:38
Align huggingface-hub version (#2728)
diff --git a/e2e/poetry.lock b/e2e/poetry.lock index 6247c63d..0f98224a 100644 --- a/e2e/poetry.lock +++ b/e2e/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. @...
5d3d7ccd03b71c9077feaf8088411584cb658534
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-15T17:22:31
Remove HF_HUB_ENABLE_HF_TRANSFER from e2e (#2727)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index 79cd2d6a..ec53ddea 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -69 +68,0 @@ jobs: - HF_HUB_ENABLE_HF_TRANSFER: "1" diff --git a/e2e/Makefile b/e2e/Makefile index 6bd03df9..655ec0b7...
96810ea23b422774541a2b8aeb4bc79394dc46fb
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-15T15:41:54
fix missing config name (#2726)
diff --git a/services/worker/src/worker/job_runners/dataset/config_names.py b/services/worker/src/worker/job_runners/dataset/config_names.py index 2e50f5fe..a45dffb1 100644 --- a/services/worker/src/worker/job_runners/dataset/config_names.py +++ b/services/worker/src/worker/job_runners/dataset/config_names.py @@ -89 +8...
8f6f35791a4d3d063b69285368831a5caee753e0
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-15T14:48:07
Ignore defunct configs (#2725)
diff --git a/services/worker/src/worker/job_runners/dataset/config_names.py b/services/worker/src/worker/job_runners/dataset/config_names.py index f0b02c7c..2e50f5fe 100644 --- a/services/worker/src/worker/job_runners/dataset/config_names.py +++ b/services/worker/src/worker/job_runners/dataset/config_names.py @@ -7 +7,...
c355f4bbbd82a62abbb5a7d927e403659c18ebbd
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-15T11:37:13
Update numpy from 1.23.5 to 1.26.4 (#2714)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 4acc6fa3..4d67fc6e 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1452,0 +1453 @@ networkx = "^3.0" +numpy = "^1.22.4" @@ -1966,2 +1967,2 @@ name = "numpy" -version = "1.23.5" -description = "NumPy is the fundamenta...
435d3ac61f58f7ac3df2369dcc50bf66835bfb06
dependabot[bot]
49699333+dependabot[bot]@users.noreply.github.com
2024-04-15T11:27:27
Update dnspython to 2.6.1 across 11 directories (#2720)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index b93c5d34..4acc6fa3 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -692 +692 @@ name = "dnspython" -version = "1.16.0" +version = "2.6.1" @@ -695 +695 @@ optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !...
2ee915640d4df149ceb8d44840260120404b2c09
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-12T17:06:41
Align clean downloads schedule (#2717)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index b4762aee..f8bd5959 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -236,2 +235,0 @@ cleanDuckdbIndexDownloads: - schedule: "*/10 * * * *" - # every 10 minutes diff --git a/chart/values.yaml b/chart/values.yaml index 3a384efc..ca485542 100644 -...
0a12589895058cb8fa46bd38b68e665b7fcf9032
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-12T16:39:18
Force clean downloads folder each 10 minutes to monitor (#2716)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index f8bd5959..b4762aee 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -235,0 +236,2 @@ cleanDuckdbIndexDownloads: + schedule: "*/10 * * * *" + # every 10 minutes
36a11b542b7e1f3063d2f92c0649738f4043a6b3
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-12T14:11:08
Update duckdb from 0.10.0 to 0.10.1 (#2697)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 50e279d4..b93c5d34 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -707 +707 @@ name = "duckdb" -version = "0.10.0" +version = "0.10.1" @@ -712,47 +712,47 @@ files = [ - {file = "duckdb-0.10.0-cp310-cp310-macosx_10...
d7572e38c59f910ddb4215a2f20546122e15dcf5
Remy
remy@huggingface.co
2024-04-12T13:37:37
fix(helm): sticky session on search api (#2711)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 06b9eee1..f8bd5959 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -398,0 +399 @@ search: + alb.ingress.kubernetes.io/target-type: ip
7b7b6d7be34f89e9cdbcf25d3f9630cb3879ee20
Remy
remy@huggingface.co
2024-04-12T13:10:46
fix(chart): search api exposed directly with ALB (#2710)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index b066bebb..06b9eee1 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -313,0 +314 @@ ingress: + alb.ingress.kubernetes.io/group.order: "100" @@ -391,0 +393,6 @@ search: + ingress: + enabled: true + annotations: + alb.ingress.kubernet...
d43299d91135abdad6c294d7f7df336b3ca1daae
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-12T12:15:48
Update pandas patch version from 2.2.0 to 2.2.2 (#2696)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 75bd913d..50e279d4 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -2068 +2068 @@ name = "pandas" -version = "2.2.0" +version = "2.2.2" @@ -2073,29 +2073,26 @@ files = [ - {file = "pandas-2.2.0-cp310-cp310-macosx_1...
ca59cf28a51d16c79b35ebfae07716ba3c62311c
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-12T12:14:03
Update numba from 0.56.4 to 0.59.1 (#2699)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 097a51ee..75bd913d 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1448 +1447,0 @@ networkx = "^3.0" -numba = "0.56.4" @@ -1498 +1497 @@ name = "llvmlite" -version = "0.39.1" +version = "0.42.0" @@ -1501 +1500 @@ opt...
48f893daba7b770d2fc409b3751ef86b17abe0ae
Remy
remy@huggingface.co
2024-04-12T11:59:06
feat(chart): search api exposed directly with ALB (#2708)
diff --git a/chart/templates/services/search/ingress.yaml b/chart/templates/services/search/ingress.yaml new file mode 100644 index 00000000..3f000f52 --- /dev/null +++ b/chart/templates/services/search/ingress.yaml @@ -0,0 +1,33 @@ +{{- if and .Values.global.huggingface.ingress.enabled .Values.ingress.enabled .Values....
43277c4b6f11e17c14656967c3279019511f0076
dependabot[bot]
49699333+dependabot[bot]@users.noreply.github.com
2024-04-12T08:11:04
Update idna from 3.4 to 3.7 across 13 directories (#2707)
diff --git a/docs/poetry.lock b/docs/poetry.lock index f26a9713..7e3ffe06 100644 --- a/docs/poetry.lock +++ b/docs/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by han...
f39ff7348bd4f3885625559529f756a9ccbe0459
Polina Kazakova
polina@huggingface.co
2024-04-11T18:39:19
Fix `Arrow datatype Extension(...) not supported by Polars` error (#2686)
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 c8c7f83e..59374247 100644 --- a/services/worker/src/worker/job_runners/split/descriptive_statistics.py +++ b/services/worker/src/worker/job_runners/split/des...
d5616b7af8356fd8dfe0f25082c1c8bc50820804
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-10T19:42:38
increase resources for API service (#2693)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 04edfb96..b066bebb 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -350,2 +350,2 @@ api: - role-datasets-server: "true" - replicas: 8 + role-datasets-server-api: "true" + replicas: 12 @@ -356,2 +356,2 @@ api: - cpu: 1 - memory:...
4d1f55964d9a9ae7c09d816393682d278b682811
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-10T15:40:52
Allow hf-internal-testing/dataset_with_script (#2689)
diff --git a/chart/values.yaml b/chart/values.yaml index 2c53e01d..19358db9 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -86 +86 @@ common: - datasetScriptsAllowList: "{{ALL_DATASETS_WITH_NO_NAMESPACE}},togethercomputer/RedPajama-Data-1T,togethercomputer/RedPajama-Data-V2,gaia-benchmark/GAIA,poloclub/diff...
c45544a15549dfedb7772cd816c27971d2a27a90
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-10T06:50:58
Make s3fs dependency explicit (#2683)
diff --git a/libs/libcommon/src/libcommon/config.py b/libs/libcommon/src/libcommon/config.py index 20e343d3..c373b9da 100644 --- a/libs/libcommon/src/libcommon/config.py +++ b/libs/libcommon/src/libcommon/config.py @@ -7 +7 @@ from dataclasses import dataclass, field -from typing import Optional +from typing import Lit...
2c24ffd164fc5fb707ca1f048bd26d2ada483927
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-09T12:36:19
Fix big dataset name (#2687)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index a30475d9..8cfb39bd 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -56 +56,4 @@ JOIN_STAGE_AND_DATA_COMMAND = ( -SPLITS_WITH_LOCAL_STORAGE = ["jp1924...
c4594472e281049496f7315b4c28b311f495d26a
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-09T12:04:41
More logs for FTS with local storage on big dataset (#2685)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index 3f71092c..a30475d9 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -56,3 +56 @@ JOIN_STAGE_AND_DATA_COMMAND = ( -SPLITS_WITH_LOCAL_STORAGE = [ - "...
5a83deb0923c4a72e0475dce576ac3d53c6a80bc
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-09T10:25:35
Fix fsspec and s3fs dependencies (#2671)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 276e22b1..e7afef32 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetr...
1b89b13d71cd264421643cbbcc7bd76e9d99bcb4
dependabot[bot]
49699333+dependabot[bot]@users.noreply.github.com
2024-04-09T09:06:37
Bump pymongo from 4.5.0 to 4.6.3 across 11 directories (#2681)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 944a6cf5..276e22b1 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetr...
c7566434c50b66ef19e5ac46115d82c1bf3ee7f5
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-09T05:40:51
Define POETRY variable in docs Makefile (#2674)
diff --git a/docs/Makefile b/docs/Makefile index 78667b42..ebff2f99 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,0 +2,3 @@ BUILD_DIR?=~/tmp/doc-datasets-server +POETRY := $(shell command -v poetry@1.7.1 2> /dev/null) +POETRY_DEFAULT := $(shell command -v poetry 2> /dev/null) +POETRY := $(if $(POETRY),$(POETRY),...
d2d70e503beaa6e7a0fa3aeb53d1a9a84b7592f9
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-09T05:39:53
Fix and re-enable pip-audit (#2676)
diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml index c027b452..fc971820 100644 --- a/.github/workflows/_quality-python.yml +++ b/.github/workflows/_quality-python.yml @@ -53,3 +53,2 @@ jobs: - #- name: Run pip-audit - # run: bash -c "poetry run pip-audit --ignore-v...
906a7fd79c679ff531f988deed17427124cb8f25
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-08T16:14:39
add a global rule for make install (#2680)
diff --git a/Makefile b/Makefile index d220bd23..65b34130 100644 --- a/Makefile +++ b/Makefile @@ -45,0 +46,14 @@ e2e: + +.PHONY: install +install: + $(MAKE) -C libs/libcommon install + $(MAKE) -C libs/libapi install + $(MAKE) -C jobs/cache_maintenance install + $(MAKE) -C jobs/mongodb_migration install + $(MAKE) -C se...
65b920c1d8e0af9e03c23f3b35005725575c3a47
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-04-08T16:08:25
Handle no resolved parquet files (#2677)
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 7bf57f44..52f8fb3c 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
ee9f17e1cbd38ec823d6d9c3480cbbb09e47366d
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-08T15:42:49
Fix typo for local big dataset and remove others (#2678)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index 4b4667b1..3f71092c 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -57,4 +57 @@ SPLITS_WITH_LOCAL_STORAGE = [ - "wikimedia/wikipedia-20231101.en-t...
8efd4a5f9f6be0c40b80977527a91a0570a61232
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-08T15:05:13
Renaming part2 (#2665)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index 48af3c85..79cd2d6a 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -54 +54 @@ jobs: - COMMON_BLOCKED_DATASETS: "DSSUser/blocked-*" + COMMON_BLOCKED_DATASETS: "DVUser/blocked-*...
d147ad661d65644dbc1e07fdfa8c6cbd1114c540
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-08T14:05:18
Try FTS index in local storage (#2673)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index df825cef..4b4667b1 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -55,0 +56,7 @@ JOIN_STAGE_AND_DATA_COMMAND = ( +SPLITS_WITH_LOCAL_STORAGE = [ + ...
52b249eb0c2bd584d3c3777898ad85be001ff2f6
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-08T09:29:26
Update pyarrow to 14.0.2 (#2670)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 31d23dff..944a6cf5 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -2298 +2298 @@ name = "pyarrow" -version = "14.0.1" +version = "14.0.2" @@ -2303,36 +2303,36 @@ files = [ - {file = "pyarrow-14.0.1-cp310-cp310-mac...
f8c2c1af6b7d9a17f702d2ad550e910eb21c4dd9
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-08T06:15:10
Remove unnecessary types-pillow (#2664)
diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index d3c21adf..20e4cf95 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -3875,11 +3874,0 @@ telegram = ["requests"] -[[package]] -name = "types-pillow" -version = "9.5.0.4" -description = "Typing stubs for Pillow" -opt...
cc97f892163f570612fa044d759157654897fe03
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-05T13:49:13
Rename to dataset viewer part1 (#2663)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index 55599725..48af3c85 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -70 +70 @@ jobs: - run: docker compose -f docker-compose-datasets-server.yml up -d --wait --wait-timeout 20 + ru...
cbf56be6ef298509093317e3f3f895a6af47ac28
Albert Villanova del Moral
8515462+albertvillanova@users.noreply.github.com
2024-04-05T13:32:04
Fix dependency on pillow in libs (#2662)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index a7937eaf..31d23dff 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetr...
33f0c9c098d1fb94ad09c8b6e9f89cebf08d8f20
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-05T11:20:20
Apply faster fts by stage table for all datasets (#2641)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index 09f6533c..df825cef 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -51,34 +50,0 @@ logger = logging.getLogger(__name__) -DATASETS_WITH_FTS_BY_STAGE_T...
85fbafbe2260c2ef2ad825de2758740adf7937cf
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-05T10:20:34
move backfill time (we changed hour in France) (#2660)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index a0e01bbd..04edfb96 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -201 +201 @@ backfill: - schedule: "25 11 * * *" + schedule: "25 10 * * *"
585235c678826422c53c66541dc5c5443d360d89
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-05T10:17:34
move backfill job time again (#2659)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 214ccf95..a0e01bbd 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -201 +201 @@ backfill: - schedule: "15 11 * * *" + schedule: "25 11 * * *"
5472ef5fd6980ded82073c5b6e09ab0cca2bd4b9
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-05T09:53:26
move the backfill cron job (#2658)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 53ff174f..214ccf95 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -201 +201 @@ backfill: - schedule: "45 10 * * *" + schedule: "15 11 * * *"
9e07b99980973cd70c2929445e63b236614dca29
dependabot[bot]
49699333+dependabot[bot]@users.noreply.github.com
2024-04-05T09:48:33
Bump the pip group across 11 directories with 1 update (#2656)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 69d94c38..a7937eaf 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetr...
431374c20017b20fdf3832f94cee037be994f148
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-04-05T09:45:37
Parallelize the backfill cron job (#2657)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 1b0cc992..53ff174f 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -208 +208 @@ backfill: - memory: "1Gi" + memory: "10Gi" @@ -211 +211 @@ backfill: - memory: "8Gi" + memory: "10Gi" diff --git a/jobs/cache_maintenance/src/cac...
e77995bcb6c013b6e965f3761f1f75842c4456da
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-04-02T11:55:17
try if search works in big datasets (#2655)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index b9a7d0ba..1b0cc992 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -389 +389 @@ search: - replicas: 24 + replicas: 7 @@ -395 +395 @@ search: - memory: "6500Mi" + memory: "30Gi" @@ -398 +398 @@ search: - memory: "9500Mi" + m...
1b5d5bc676083164e4338ce395dc10e2f3ba3a83
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-03-29T10:29:06
trigger a backfill job in 15 min (#2652)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index f7ef56b6..b9a7d0ba 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -201 +201 @@ backfill: - schedule: "45 22 * * *" + schedule: "45 10 * * *"
436f33a6ad6933f3d7b3ba50e7f820832cf62950
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-03-29T10:03:48
Compute croissant in workers (#2524)
diff --git a/libs/libcommon/src/libcommon/croissant_utils.py b/libs/libcommon/src/libcommon/croissant_utils.py index 4105a1fc..6a898763 100644 --- a/libs/libcommon/src/libcommon/croissant_utils.py +++ b/libs/libcommon/src/libcommon/croissant_utils.py @@ -3,0 +4,3 @@ +from collections.abc import Mapping +from typing imp...
109098c7dbf8bf403493c438361e65f4836b8423
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-03-29T10:02:31
Remove croissant endpoint (#2645)
diff --git a/services/api/src/api/app.py b/services/api/src/api/app.py index 2906b1bb..f5e1cfd9 100644 --- a/services/api/src/api/app.py +++ b/services/api/src/api/app.py @@ -121,16 +120,0 @@ def create_app_with_config(app_config: AppConfig, endpoint_config: EndpointConfi - Route( - "/croissant", - ...
622e90d5fe9e2318a0b073aa5a77a662044da525
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-03-28T15:57:12
Fix row-group size for imagefolder and audiofolder datasets (#2647)
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 49581b2c..7bf57f44 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info....
4dddea2e6a476d52ba5be0c7c64fb8eca9827935
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-03-28T10:25:12
/croissant -> /croissant-crumbs (only specific fields) (#2643)
diff --git a/docs/source/croissant.md b/docs/source/croissant.md index bb5b666b..68499fe1 100644 --- a/docs/source/croissant.md +++ b/docs/source/croissant.md @@ -9,6 +8,0 @@ Croissant is a metadata format build on top of [schema.org](https://schema.org/) -<Tip> - -The [specification](https://github.com/mlcommons/crois...
86a6759a92b794e65eb4ab4311f2f82a0a597edb
Quentin Lhoest
42851186+lhoestq@users.noreply.github.com
2024-03-28T10:20:13
Update Croissant URL to use the HF Hub `/api` (#2642)
diff --git a/docs/source/croissant.md b/docs/source/croissant.md index 1c0e1beb..bb5b666b 100644 --- a/docs/source/croissant.md +++ b/docs/source/croissant.md @@ -17 +17 @@ The [specification](https://github.com/mlcommons/croissant/blob/main/docs/croiss -This guide shows you how to use Datasets Server's `/croissant` en...
af13e5f016e589efc70ba40621f8eaceda56fcd0
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-03-27T21:26:39
Try to improve fts time for some datasets (#2644)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index 4fb552b2..09f6533c 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -51 +51,9 @@ logger = logging.getLogger(__name__) -DATASETS_WITH_FTS_BY_STAGE_TABL...
eac833de25037f985414dcdc4ec03ff0b701563f
Andrea Francis Soria Jimenez
andrea@huggingface.co
2024-03-27T13:33:47
Try to improve fts for big datasets by stage table join (#2638)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index cb70a0f8..f7ef56b6 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -398 +398 @@ search: - memory: "6500Mi" + memory: "9500Mi" diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index ...
8c1a0e0e4c331d325b13cace55e71ca2818d5dc0
Sylvain Lesage
sylvain.lesage@huggingface.co
2024-03-27T12:57:59
remove unused dependencies in workers (#2637)
diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml index 596e63b7..c027b452 100644 --- a/.github/workflows/_quality-python.yml +++ b/.github/workflows/_quality-python.yml @@ -35 +35 @@ jobs: - run: sudo apt update; sudo apt install -y libicu-dev ffmpeg libavcodec-extra lib...