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 |
|---|---|---|---|---|---|
2994f29bb319518be2b416e8aad35b2f704a2ffb | Andrea Soria Jimenez | andrea@huggingface.co | 2023-02-02T18:18:32 | Adding custom exception when cache insert fails because of too many columns (#749) | diff --git a/chart/env/dev.yaml b/chart/env/dev.yaml
index 790b6d85..4d6bbe76 100644
--- a/chart/env/dev.yaml
+++ b/chart/env/dev.yaml
@@ -198,0 +199 @@ firstRows:
+ columnsMaxNumber: 1_000
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index fd1e6b77..668a0302 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/... |
3bd06ab6266494bd747d13057a58aa4c42b196c2 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-02-02T12:55:06 | update the logic to skip a job (#761) | diff --git a/workers/datasets_based/src/datasets_based/worker.py b/workers/datasets_based/src/datasets_based/worker.py
index 670d2030..d55f8d2e 100644
--- a/workers/datasets_based/src/datasets_based/worker.py
+++ b/workers/datasets_based/src/datasets_based/worker.py
@@ -14,0 +15 @@ from libcommon.simple_cache import (
... |
89a451056b4338176b012cefa31a5d222183fa0d | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-02-02T09:03:18 | ci: 🎡 only run on PR and on main (#758) | diff --git a/.github/workflows/chart.yml b/.github/workflows/chart.yml
index 5d6114f3..0876bcce 100644
--- a/.github/workflows/chart.yml
+++ b/.github/workflows/chart.yml
@@ -7,0 +8,2 @@ on:
+ branches:
+ - main
@@ -20 +22 @@ jobs:
- uses: actions/checkout@main
+ uses: actions/checkout@v3
diff --g... |
a968dc5a290cce58fa54536264e7362576419a0a | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-02-02T09:01:17 | test: 💍 ensure the database is ready in the tests (#759) | diff --git a/workers/datasets_based/tests/test_worker.py b/workers/datasets_based/tests/test_worker.py
index ac170948..86c74a8e 100644
--- a/workers/datasets_based/tests/test_worker.py
+++ b/workers/datasets_based/tests/test_worker.py
@@ -6,2 +6,2 @@ from libcommon.processing_graph import ProcessingGraph, ProcessingSte... |
75ae5f7e2e96738ff37358ceab8aa85b2caee206 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-02-01T15:47:24 | refactor: 💡 remove dead code (#757) | diff --git a/workers/datasets_based/src/datasets_based/workers/parquet_and_dataset_info.py b/workers/datasets_based/src/datasets_based/workers/parquet_and_dataset_info.py
index 18fb3126..2cccb3d8 100644
--- a/workers/datasets_based/src/datasets_based/workers/parquet_and_dataset_info.py
+++ b/workers/datasets_based/src/... |
893a70cb7201090b8c64cd127fbe029c723f2aa3 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-02-01T10:09:11 | remove docker-images.yaml, and fix dev.yaml (#752) | diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 69dba2fc..c7964fab 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -10 +9,0 @@ on:
- - 'chart/docker-images.yaml'
@@ -20 +18,0 @@ on:
- - 'chart/docker-images.yaml'
diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GU... |
223753919d31ef764a64d851f415adb5080c0f2b | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-31T16:24:59 | feat: 🎸 update docker images (#748) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index d1dd2901..d1d1f55d 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -56 +56 @@ images:
- tag: sha-2f38593
+ tag: sha-25ff490
@@ -62 +62 @@ images:
- tag: sha-2f38593
+ tag: sha-25ff490
@@ -67 +67 @@ images:
- tag: sha-2f3... |
25ff4909881ddbb6fa212a12313fca6b931aabbf | Quentin Lhoest | 42851186+lhoestq@users.noreply.github.com | 2023-01-31T15:40:00 | add HF_TOKEN env var for admin ui (#746) | diff --git a/front/admin_ui/app.py b/front/admin_ui/app.py
index 23aaf1e4..571d717b 100644
--- a/front/admin_ui/app.py
+++ b/front/admin_ui/app.py
@@ -17,0 +18 @@ ADMIN_HF_ORGANIZATION = os.environ.get("ADMIN_HF_ORGANIZATION", "huggingface")
+HF_TOKEN = os.environ.get("HF_TOKEN")
@@ -32 +32,0 @@ def healthcheck():
-
@@... |
af18ee98b448d9b4b1d30206f426f80b40644651 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-31T15:36:42 | fix: 🐛 fix the migration scripts to be able to run on new base (#747) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 7add4758..d1dd2901 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -52,5 +52,5 @@ images:
- # mongodbMigration:
- # registry: huggingface
- # useGlobalRegistry: false
- # repository: datasets-server-jobs-mongodb_migration
- ... |
bee1e975a1784ced71836a534415d6c9f6903cde | Quentin Lhoest | 42851186+lhoestq@users.noreply.github.com | 2023-01-31T15:26:36 | fir admin ui requirements.txt (#742) | diff --git a/front/admin_ui/requirements.txt b/front/admin_ui/requirements.txt
index e1e0d9a9..a0054b99 100644
--- a/front/admin_ui/requirements.txt
+++ b/front/admin_ui/requirements.txt
@@ -1,5 +1,5 @@
-gradio==~3.16.1
-matplotlib==^3.3.4
-requests==^2.26.0
-huggingface-hub==~0.12.0
-duckdb==~0.6.1
+gradio~=3.16.1
+ma... |
b08e3f0b549c79648c5d45870485209bfe02a9af | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-31T14:53:08 | fix: 🐛 disable the mongodbMigration job for now (#743) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index d1dd2901..7add4758 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -52,5 +52,5 @@ images:
- mongodbMigration:
- registry: huggingface
- useGlobalRegistry: false
- repository: datasets-server-jobs-mongodb_migration
- tag: s... |
9387638f786c29d2f7b8170270e3ad0fe48b3406 | Quentin Lhoest | 42851186+lhoestq@users.noreply.github.com | 2023-01-31T14:28:54 | add gradio admin ui (#732) | diff --git a/front/admin_ui/README.md b/front/admin_ui/README.md
new file mode 100644
index 00000000..d655de97
--- /dev/null
+++ b/front/admin_ui/README.md
@@ -0,0 +1,21 @@
+## Datasets-server Admin UI
+
+### Setup:
+
+```
+poetry install
+```
+
+### Run:
+
+To connect to the PROD endpoint:
+
+```
+poetry run python ap... |
042e8a8207803d74260f8ef0784bce40d4e397a4 | Rémy | remy.trompier@gmail.com | 2023-01-31T12:28:14 | fix: remove mongo migration job execution on pre-install hook | diff --git a/chart/templates/jobs/mongodb-migration/job.yaml b/chart/templates/jobs/mongodb-migration/job.yaml
index 4c23212c..68ea3bd5 100644
--- a/chart/templates/jobs/mongodb-migration/job.yaml
+++ b/chart/templates/jobs/mongodb-migration/job.yaml
@@ -12 +12 @@ metadata:
- "helm.sh/hook": pre-install,pre-upgrade
... |
eaa2c47807a0d6185dd8e3b8b65e566e1abfbd48 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-31T12:23:36 | feat: 🎸 add indexes, based on recommendations from mongo cloud (#728) | diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py
index 7a8de583..cf808f5b 100644
--- a/libs/libcommon/src/libcommon/queue.py
+++ b/libs/libcommon/src/libcommon/queue.py
@@ -131,0 +132 @@ class Job(Document):
+ "dataset",
@@ -136 +137 @@ class Job(Document):
- ... |
6bd97091b3e5d96c7424f71169891aa3e0f5a526 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-31T09:31:59 | feat: 🎸 adapt number of replicas to flush the queues (#733) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index c9e69196..d1dd2901 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -259 +259 @@ splits:
- replicas: 12
+ replicas: 8
@@ -279 +279 @@ firstRows:
- replicas: 24
+ replicas: 90
@@ -301 +301 @@ parquetAndDatasetInfo:
- replicas: 24
+ replicas:... |
668f806336b07a8a9a3d5f66382f44b98f2afd64 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-30T18:23:54 | fix: 🐛 fix two labels (#730) | diff --git a/chart/templates/_helpers.tpl b/chart/templates/_helpers.tpl
index c26333c5..0a7e2486 100644
--- a/chart/templates/_helpers.tpl
+++ b/chart/templates/_helpers.tpl
@@ -131 +131 @@ app.kubernetes.io/component: "{{ include "name" . }}-api"
-app: "{{ include "release" . }}-worker-config-names"
+app.kubernetes.i... |
3ac5a221c796e71821ef84d8ef973a0b677cfdb0 | Rémy | remy.trompier@gmail.com | 2023-01-30T16:44:49 | feat: publish helm chart on HF internal registry | diff --git a/.github/workflows/publish-helm.yml b/.github/workflows/publish-helm.yml
new file mode 100644
index 00000000..dc643bf1
--- /dev/null
+++ b/.github/workflows/publish-helm.yml
@@ -0,0 +1,40 @@
+name: Publish Helm Chart
+
+on:
+ workflow_dispatch:
+ push:
+ branches:
+ - main
+ paths:
+ - 'ch... |
6f1dc39c2bf4313f3ec6252c03e1cae9a4d87398 | Rémy | remy.trompier@gmail.com | 2023-01-30T15:03:38 | feat: private hub refactoring | diff --git a/.gitignore b/.gitignore
index 3b11076c..f2db052a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,0 +12 @@
+.idea
diff --git a/chart/Chart.lock b/chart/Chart.lock
index 923e42fe..1273ec41 100644
--- a/chart/Chart.lock
+++ b/chart/Chart.lock
@@ -4,3 +4,3 @@ dependencies:
- version: 12.0.0
-digest: sha256:13... |
fbce53c0d706e638a4aa7542c3e466ce50aff328 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-30T13:46:28 | fix: 🐛 add a missing default value for org name in admin/ (#722) | diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml
index 82cd50fc..1025004d 100644
--- a/tools/docker-compose-datasets-server.yml
+++ b/tools/docker-compose-datasets-server.yml
@@ -31 +31 @@ services:
- ADMIN_HF_ORGANIZATION: ${ADMIN_HF_ORGANIZATION-}
+ ADMIN_HF_O... |
d7caf78752601632e2d45ad36d9351f137298b8e | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-30T13:46:17 | feat: 🎸 update docker images (#723) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 51062cb2..be8a9de6 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-f70513e"
+ "mongodbMigration": "huggingface/datasets-server-j... |
7cc7367140e0988df18125dd2e6dce03e806a304 | Albert Villanova del Moral | 8515462+albertvillanova@users.noreply.github.com | 2023-01-30T13:38:19 | Trigger CI by PRs from forks (#713) | diff --git a/.github/workflows/chart.yml b/.github/workflows/chart.yml
index ef433df4..5d6114f3 100644
--- a/.github/workflows/chart.yml
+++ b/.github/workflows/chart.yml
@@ -10,0 +11,4 @@ on:
+ pull_request:
+ paths:
+ - 'chart/**'
+ - '.github/workflows/chart.yml'
diff --git a/.github/workflows/e2e.yml ... |
2f38593da9a8ed577ce00e4f21c5b1293f836c54 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-30T13:28:12 | fix: 🐛 don't check if dataset is supported when we know it is (#720) | diff --git a/.github/workflows/_unit-tests-python.yml b/.github/workflows/_unit-tests-python.yml
index 89b1a9da..6b29be44 100644
--- a/.github/workflows/_unit-tests-python.yml
+++ b/.github/workflows/_unit-tests-python.yml
@@ -62 +62 @@ jobs:
- fail_ci_if_error: true
+ fail_ci_if_error: false
diff --g... |
4414d57b95bcd4ff0ac519e6893a9e58e5069058 | Albert Villanova del Moral | 8515462+albertvillanova@users.noreply.github.com | 2023-01-30T09:14:24 | Update datasets to 2.9.0 (#715) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 8d7ccee7..51062cb2 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -12 +12 @@
- "datasets_based": "huggingface/datasets-server-workers-datasets_based:sha-f70513e"
+ "datasets_based": "huggingface/datasets-server-wor... |
c6c4872d5c588f9d752d746fd4f688405c3ce3b2 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-27T22:32:38 | ci: 🎡 build and push the docker images only on push to main (#717) | diff --git a/.github/workflows/_build_push_docker_hub.yml b/.github/workflows/build_push_docker_hub.yml
similarity index 62%
rename from .github/workflows/_build_push_docker_hub.yml
rename to .github/workflows/build_push_docker_hub.yml
index 0a68ba78..19e91ad7 100644
--- a/.github/workflows/_build_push_docker_hub.yml
+... |
85e7aac92064e6d2359b029595c316b78f68bd78 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-27T22:21:03 | ci: 🎡 build the images before running the e2e tests (#716) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index 8d8493f8..cdc7ea4d 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -7,4 +6,0 @@ on:
- inputs:
- config-file:
- required: true
- type: string
@@ -18,17 +13,0 @@ jobs:
- ge... |
9d22c9676248f4c39b97bc8683db9f7a633f53b6 | Albert Villanova del Moral | 8515462+albertvillanova@users.noreply.github.com | 2023-01-27T13:48:56 | Update poetry lock file format to 2.0 (#714) | |
6e63de2ba027a593095fda810eba4e672aa09976 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-27T10:20:52 | feat: 🎸 add a /backfill admin endpoint (#708) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 047546f5..a0809933 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-48dee06"
+ "mongodbMigration": "huggingface/datasets-server-j... |
290f5be529d8c040b5638437cf25fa2fc6da0a53 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-26T18:46:03 | fix: 🐛 fix migration script (#707) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index f1b01179..047546f5 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-3de1315"
+ "mongodbMigration": "huggingface/datasets-server-j... |
ebdb9feaf09dc508267be1ae4fd0d259567a61cb | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-26T18:12:57 | Add priority field to queue (#705) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index e8001e77..f1b01179 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-da3070a"
+ "mongodbMigration": "huggingface/datasets-server-j... |
b69c0f0dcb7fa005b9ee1e2eea3bb1dc6c452956 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-26T17:52:21 | feat: 🎸 make /first-rows depend on /split-names, not /splits (#706) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index c1ec7c1d..e8001e77 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-690d1cd"
+ "mongodbMigration": "huggingface/datasets-server-j... |
fd106cbaed2ba500af91e3bdd19925fe44f2b15e | Kevin Leffew | kevin@storj.io | 2023-01-26T16:19:20 | Update index.mdx (#693) | diff --git a/docs/source/index.mdx b/docs/source/index.mdx
index abf155b2..241f2e86 100644
--- a/docs/source/index.mdx
+++ b/docs/source/index.mdx
@@ -11 +11 @@ Let Datasets Server take care of the heavy lifting so you can:
-Join the growing community on the [forum](https://discuss.huggingface.co/) or [Discord](https:/... |
7d4e4d613b32ebe7335e5f5c76a6cdb258e5fc5e | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-26T14:14:32 | Configs and splits (#702) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index cecf827b..c1ec7c1d 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-5364f81"
+ "mongodbMigration": "huggingface/datasets-server-j... |
8d890ea793959bb0847239e2de798b08aada4f8c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-26T08:59:34 | ci: 🎡 launch CI when libcommon has been modified (#703) | diff --git a/.github/workflows/j-migration-build-docker.yml b/.github/workflows/j-migration-build-docker.yml
index bf660447..a3ec4ff3 100644
--- a/.github/workflows/j-migration-build-docker.yml
+++ b/.github/workflows/j-migration-build-docker.yml
@@ -12,0 +13 @@ on:
+ - 'libs/libcommon/**'
diff --git a/.github/wor... |
55063e17c1491955a594ba3422b3183adb12e66c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-25T14:22:01 | Update hfh (#700) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 76614377..cecf827b 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-05a1740"
+ "mongodbMigration": "huggingface/datasets-server-j... |
02ca8982643652c99ca5b8a4d17c73313c84f9f0 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-25T10:33:36 | refactor: 💡 set libcommon as an "editable" dependency (#699) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 509e1adb..76614377 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-0abd269"
+ "mongodbMigration": "huggingface/datasets-server-j... |
f320f88da09a51d9b71d3f1709e881e8fcece7af | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-25T09:10:26 | feat: 🎸 block more datasets in /parquet-and-dataset-info (#698) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 98fe47c2..4a8c5b93 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -216 +216 @@ parquetAndDatasetInfo:
- blockedDatasets: "matallanas/linustechtips-transcript-audio-wav,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,ashraf-ali/quran-d... |
059cb3029567c320f363263856f1725491bec665 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-25T09:05:46 | feat: 🎸 reduce logs level from DEBUG to INFO (#697) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 03fb282e..98fe47c2 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -73 +73 @@ common:
- logLevel: "DEBUG"
+ logLevel: "INFO" |
c40fe808708feff76d1adb8936c5ff0b1a0b521c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-23T23:09:59 | Add a new route: /cache-reports-with-content (#696) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 1a5df9db..509e1adb 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-9ab3e6e"
+ "mongodbMigration": "huggingface/datasets-server-j... |
8c837fb3bcedc5ffd1783a2be73304e2c8322543 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-23T17:40:18 | feat: 🎸 launch children jobs even when skipped (#695) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 85a0a0f8..1a5df9db 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -12 +12 @@
- "datasets_based": "huggingface/datasets-server-workers-datasets_based:sha-9ab3e6e"
+ "datasets_based": "huggingface/datasets-server-wor... |
984f0b59c5d220d1341df89a42aea22c339cde52 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-23T15:17:22 | feat: 🎸 replace Queue.add_job with Queue.upsert_job (#694) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 237246b9..85a0a0f8 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-61dda8c"
+ "mongodbMigration": "huggingface/datasets-server-j... |
fd39deb1eb1252eecff0ed49dee927703f42db0a | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-23T10:17:19 | feat: 🎸 add support for pdf2image (#691) | diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml
index c67052a7..a015f530 100644
--- a/.github/workflows/_quality-python.yml
+++ b/.github/workflows/_quality-python.yml
@@ -39 +39 @@ jobs:
- run: sudo apt update; sudo apt install -y libicu-dev ffmpeg libavcodec-extra lib... |
d7d1dd70c40f8b0d68ec16cf534be42df6eb1f71 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-20T20:10:51 | feat: 🎸 block more datasets, and allow more /first-rows per ns (#690) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 96922c51..73365ec5 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -199 +199 @@ firstRows:
- maxJobsPerNamespace: 4
+ maxJobsPerNamespace: 10
@@ -214 +214 @@ parquetAndDatasetInfo:
- blockedDatasets: "matallanas/linustechtips-transcript-a... |
47578935bd988c98a97e14ec1138c691cc61695b | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-20T13:19:09 | chore: 🤖 update resources (#686) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 09c85109..96922c51 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -179 +179 @@ splits:
- maxJobsPerNamespace: 4
+ maxJobsPerNamespace: 5
@@ -183 +183 @@ splits:
- replicas: 40
+ replicas: 12
@@ -203 +203 @@ firstRows:
- replicas: 64
+ ... |
31067d3c643719c4a3331261d4a34ee00cdccd65 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-19T16:23:50 | fix: 🐛 fix memory specification + increase pods in /parquet (#684) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 0d417389..09c85109 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -242 +242 @@ parquet:
- replicas: 2
+ replicas: 4
@@ -246 +246 @@ parquet:
- memory: "0.1Gi"
+ memory: "100Mi"
@@ -259 +259 @@ datasetInfo:
- replicas: 2
+ replicas... |
cfb12c5c60461463ff62b597280d229460570ef6 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-19T15:34:19 | feat: 🎸 increase resources` (#683) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 3e26187c..0d417389 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -183 +183 @@ splits:
- replicas: 20
+ replicas: 40
@@ -203 +203 @@ firstRows:
- replicas: 32
+ replicas: 64 |
009658336029005a761df7163e6c0019b89a71a6 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-19T14:35:47 | feat: 🎸 increase resources (#682) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index b23ba762..3e26187c 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -183 +183 @@ splits:
- replicas: 12
+ replicas: 20
@@ -203 +203 @@ firstRows:
- replicas: 16
+ replicas: 32 |
bbcbfa0ff48d3f81a0fe81529c2577767060fdea | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-19T14:18:20 | feat: 🎸 increase number of workers for a moment (#681) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 5029f41c..b23ba762 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -225 +225 @@ parquetAndDatasetInfo:
- replicas: 16
+ replicas: 40 |
4d5f20bd98be48c51fd8cf5bc3dc9c05c80f7bb6 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-19T13:24:14 | chore: 🤖 add --no-cache (poetry) and --no-cache-dir (pip) (#680) | diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml
index 71c15904..c67052a7 100644
--- a/.github/workflows/_quality-python.yml
+++ b/.github/workflows/_quality-python.yml
@@ -56 +56 @@ jobs:
- run: bash -c "poetry run pip-audit -r <(poetry export -f requirements.txt --with... |
37f53b1a2b57a23772cbeeee26877d98ab36e509 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-19T10:34:08 | feat: 🎸 add /sizes (#679) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 118f1807..bcecf7fb 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-3ff0a9c"
+ "mongodbMigration": "huggingface/datasets-server-j... |
b3ac6a16ad520b18997d1ee1304811f77707499e | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-18T21:26:25 | Create endpoint /dataset-info (#670) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index 441cb039..c22f7330 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -63 +63 @@ jobs:
- PARQUET_COMMITTER_HF_TOKEN: "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"
+ PARQUET_AND_DATASET... |
30b508c0c5d3e7c35885479a05613ddf0684d202 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-16T12:53:53 | Create children in generic worker (#677) | diff --git a/libs/libcommon/dist/libcommon-0.6.1-py3-none-any.whl b/libs/libcommon/dist/libcommon-0.6.1-py3-none-any.whl
new file mode 100644
index 00000000..7f2e2966
Binary files /dev/null and b/libs/libcommon/dist/libcommon-0.6.1-py3-none-any.whl differ
diff --git a/libs/libcommon/dist/libcommon-0.6.1.tar.gz b/libs/l... |
7c67cf1839908e4f55219dfc11e602bd4eb2038e | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-16T12:30:02 | ci: 🎡 fix app token (#678) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index 93f019c3..441cb039 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -62 +62 @@ jobs:
- COMMON_HF_TOKEN: "hf_datasets-server_token"
+ COMMON_HF_TOKEN: "hf_app_datasets-server_to... |
d0ce1acf003f2a17d477b6f3a9def13cdea2f374 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-11T15:01:11 | fix: 🐛 only check webhook payload for what we are interested in (#676) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 4d6b8b2b..fe5ac168 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -9 +9 @@
- "api": "huggingface/datasets-server-services-api:sha-6a36caa"
+ "api": "huggingface/datasets-server-services-api:sha-a36b651"
diff --git ... |
9c9036007094b8cf93b54947b5c41b3accc63bae | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-05T09:41:35 | feat: 🎸 allow more concurrent jobs fo the same namespace (#675) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 0f044929..dce0f63c 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -179 +179 @@ splits:
- maxJobsPerNamespace: 1
+ maxJobsPerNamespace: 4
@@ -222 +222 @@ parquet:
- maxJobsPerNamespace: 2
+ maxJobsPerNamespace: 4 |
5edcb54ffce0bd9392b221e008306d7feb12dd6a | Sylvain Lesage | sylvain.lesage@huggingface.co | 2023-01-02T17:21:51 | feat: 🎸 update the HF webhook content (#671) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index cc96e554..4d6b8b2b 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-1edecd9"
+ "mongodbMigration": "huggingface/datasets-server-j... |
9bdd3f0b5d8b38d2cace2d7220522ade17038075 | Anthony MOI | xn1t0x@gmail.com | 2023-01-02T11:30:30 | Small tweaks on Helm charts (#649) | diff --git a/chart/.helmignore b/chart/.helmignore
index 0e8a0eb3..64aea69c 100644
--- a/chart/.helmignore
+++ b/chart/.helmignore
@@ -23,0 +24,2 @@
+# Helm envs
+env
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 45b612b1..0f044929 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -120,0 +121... |
e31129ea284d3895fbcee29a146db494d19e4e72 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-23T13:14:18 | chore: 🤖 speed-up docker build (#669) | diff --git a/jobs/mongodb_migration/Dockerfile b/jobs/mongodb_migration/Dockerfile
index 301a9861..8257adf9 100644
--- a/jobs/mongodb_migration/Dockerfile
+++ b/jobs/mongodb_migration/Dockerfile
@@ -24,2 +23,0 @@ WORKDIR /src
-COPY libs/libcommon/dist ./libs/libcommon/dist
-COPY jobs/mongodb_migration/src ./jobs/mongod... |
ac28b955b92603d3e47e40ae5a6178a06c7bd70c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-23T10:55:03 | Split Worker into WorkerLoop, WorkerFactory and Worker (#668) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index d2967925..cc96e554 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-7b4762b"
+ "mongodbMigration": "huggingface/datasets-server-j... |
746414449cae4b311733f8a76e5b3b4ca73b38a9 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-20T22:10:58 | feat: 🎸 give each worker its own version + upgrade to 2.0.0 (#667) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 47d036e1..d2967925 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -12 +12 @@
- "datasets_based": "huggingface/datasets-server-workers-datasets_based:sha-3223a24"
+ "datasets_based": "huggingface/datasets-server-wor... |
b1d71bd1a5fe60059e05a84bba67837d64d8db1a | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-20T21:13:34 | feat: 🎸 upgrade datasets to 2.8.0 (#666) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 6ad554a3..47d036e1 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -12 +12 @@
- "datasets_based": "huggingface/datasets-server-workers-datasets_based:sha-786c9b2"
+ "datasets_based": "huggingface/datasets-server-wor... |
598e9174814d52f729087b58862511990f33cf97 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-20T20:41:38 | Fix empty commits (#665) | diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml
index 1deb065c..dfd331f3 100644
--- a/.github/workflows/_quality-python.yml
+++ b/.github/workflows/_quality-python.yml
@@ -57 +57 @@ jobs:
- run: bash -c "poetry run pip-audit --ignore-vuln GHSA-47fc-vmwq-366v -r <(poetr... |
2d3cfff4b6baf4e3ea5d92658d507dd5e59d63ea | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-14T14:58:49 | docs: ✏️ fix doc (#664) | diff --git a/docs/source/server.mdx b/docs/source/server.mdx
index fa81222e..8a1d8a9c 100644
--- a/docs/source/server.mdx
+++ b/docs/source/server.mdx
@@ -3 +3 @@
-The Datasets Server has two main components that work together to return queries about a dataset instantly:
+The [Datasets Server](https://github.com/huggin... |
bd6aae32aa06064d6888d8a1bf8246153e3f9780 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-13T10:11:54 | feat: 🎸 add method to get the duration of the jobs per dataset (#663) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 6a535e57..6ad554a3 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -8 +8 @@
- "admin": "huggingface/datasets-server-services-admin:sha-7b4762b",
+ "admin": "huggingface/datasets-server-services-admin:sha-adde39b",
d... |
455577de653eb3b531accc29c97a85a07b67c64b | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-12T17:37:08 | feat: 🎸 update the production parameters (#662) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 1e51db46..300f2e6a 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -176 +176 @@ splits:
- maxJobsPerNamespace: 4
+ maxJobsPerNamespace: 1
@@ -180 +180 @@ splits:
- replicas: 10
+ replicas: 12
@@ -200 +200 @@ firstRows:
- replicas: 18
+ ... |
79a68ab5edf183cdedd747c86a28af2925c591e6 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-09T12:57:24 | feat: 🎸 add parquet worker (#651) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index acfce650..93f019c3 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -62 +62,2 @@ jobs:
- COMMON_HF_TOKEN: "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"
+ COMMON_HF_TOKEN: "hf_dataset... |
c7cfaa8bc2192933b476e4e92d973b6eba306db7 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-05T10:23:56 | feat: 🎸 upgrade from python 3.9.6 to 3.9.15 (#658) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index 5e52189f..acfce650 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -12 +12 @@ env:
- python-version: 3.9.6
+ python-version: 3.9.15
diff --git a/.github/workflows/_quality-python.yml b/.githu... |
080da2efe810cccb401886f6c24e013ce20344af | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-12-01T12:29:32 | Merge the workers that rely on the datasets library (#656) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index 85b34cd1..5e52189f 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -58,2 +58 @@ jobs:
- IMAGE_WORKER_SPLITS: "${{fromJson(needs.get-config.outputs.dockerConfig).dockerImage.workers.spl... |
4ab24c545799e30c29faa3c89eb348d9e3060e5c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-29T14:53:12 | Simplify docker (#654) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index 1196d3b6..85b34cd1 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -60 +60 @@ jobs:
- QUEUE_SLEEP_TIME: "1"
+ WORKER_SLEEP_TIME: "1"
@@ -72 +72 @@ jobs:
- run: docker-c... |
b5b820a8d2845bdf7bdc4e11aadf2331b9b228f4 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-29T11:48:06 | feat: 🎸 cancel-jobs must be a POST request, not a GET (#653) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 5d92fc2b..2566e41d 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -8 +8 @@
- "admin": "huggingface/datasets-server-services-admin:sha-b9b950d",
+ "admin": "huggingface/datasets-server-services-admin:sha-298bbc9",
d... |
1233c2f5949114e2043adedf2b22b4e7bde92d46 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-29T11:44:26 | Fix ask access (#652) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index d6467df7..5d92fc2b 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -8,2 +8,2 @@
- "admin": "huggingface/datasets-server-services-admin:sha-7eb22ac",
- "api": "huggingface/datasets-server-services-api:sha-6907835"
+ ... |
8e5f8761922ae22a272ac74adfa445a1336d7484 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-28T21:47:19 | Implement generic processing steps (#650) | diff --git a/.github/workflows/l-libcache.yml b/.github/workflows/l-libcache.yml
deleted file mode 100644
index 592303de..00000000
--- a/.github/workflows/l-libcache.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-# SPDX-License-Identifier: Apache-2.0
-# Copyright 2022 The HuggingFace Authors.
-
-name: libs/libcache
-on:
- workfl... |
3012da62054a025467616abc14b0b46e1f11ea13 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-24T12:48:09 | fix: 🐛 install missing dependency (#647) | diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml
index 1ff16534..c1e8be4c 100644
--- a/.github/workflows/_quality-python.yml
+++ b/.github/workflows/_quality-python.yml
@@ -57 +57 @@ jobs:
- run: bash -c "poetry run pip-audit -r <(poetry export -f requirements.txt --with... |
8a808088a847dbdeee1ce2bc4909708a797b6d0c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-24T12:06:20 | feat: 🎸 upgrade to datasets 2.7.1 (#646) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index f3713f6f..5b47d01f 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -12,2 +12,2 @@
- "splits": "huggingface/datasets-server-workers-splits:sha-4a48536",
- "firstRows": "huggingface/datasets-server-workers-first_rows:... |
18a51afe1c1c89ef796d9b5916d1691a853ad325 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-24T11:24:03 | Replace safety with pip audit (#645) | |
38070c7058294dc2401bbcafa80559598ffe7c17 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-21T16:01:51 | feat: 🎸 upgrade datasets (#644) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 6a9bbea2..e38d9364 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -12,2 +12,2 @@
- "splits": "huggingface/datasets-server-workers-splits:sha-dfa89b1",
- "firstRows": "huggingface/datasets-server-workers-first_rows:... |
d17a26ea9ffdaac0d66cd278e03cb562eb93fcf0 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-18T12:12:29 | Refactor common cache entry (#634) | diff --git a/.vscode/monorepo.code-workspace b/.vscode/monorepo.code-workspace
index 6a144da6..b4ce202d 100644
--- a/.vscode/monorepo.code-workspace
+++ b/.vscode/monorepo.code-workspace
@@ -19,4 +18,0 @@
- {
- "name": "libs/libqueue",
- "path": "../libs/libqueue"
- },
@@ -26,0 +23,4 @@
+ {
+ "n... |
35a30dbcd687b26db1f02502ea8305f70c064473 | Adrien | adrien@xcid.fr | 2022-11-17T16:53:20 | Standardize Helms Charts (#635) | diff --git a/chart/env/dev.yaml b/chart/env/dev.yaml
index db143712..b8a476f0 100644
--- a/chart/env/dev.yaml
+++ b/chart/env/dev.yaml
@@ -9,2 +9,10 @@ secrets:
- hfToken: datasets-server-hf-token
- mongoUrl: false
+ mongoUrl:
+ fromSecret: false
+ secretName: "mongo-url"
+ value: mongo://
+ token:
+ fr... |
076a0dd2ab98d74e6e8990bba241c69bff3042a0 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-16T16:15:03 | feat: 🎸 upgrade huggingface_hub to 0.11.0 (#643) | diff --git a/e2e/poetry.lock b/e2e/poetry.lock
index 3f42b0ad..1da2ce67 100644
--- a/e2e/poetry.lock
+++ b/e2e/poetry.lock
@@ -170 +170 @@ name = "huggingface-hub"
-version = "0.8.1"
+version = "0.11.0"
@@ -184,0 +185,7 @@ typing-extensions = ">=3.7.4.3"
+all = ["InquirerPy (==0.3.4)", "isort (>=5.5.4)", "jedi", "jinja... |
1a48e05b87b0b00e64d123236b4ea6b488711a2e | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-16T14:36:59 | Force job (#642) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index eaf106a8..093e67b8 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5 +5 @@
- "mongodbMigration": "huggingface/datasets-server-jobs-mongodb_migration:sha-a514e54"
+ "mongodbMigration": "huggingface/datasets-server-j... |
3faebee1d14e5d32e65e516a81d397f672598e1c | Mishig | mishig.davaadorj@coloradocollege.edu | 2022-11-16T10:44:53 | Revert "Update pr docs actions (#632)" (#641) | diff --git a/.github/workflows/doc-pr-build.yml b/.github/workflows/doc-pr-build.yml
index fe01c960..f962ada5 100644
--- a/.github/workflows/doc-pr-build.yml
+++ b/.github/workflows/doc-pr-build.yml
@@ -18 +18 @@ jobs:
- uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@use_hf_hub
+ uses:... |
ef930e85f3702c0c110e13fd60f76fa58e39db1b | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-16T09:53:25 | feat: 🎸 update dependencies to fix vulnerabilities (#639) | diff --git a/e2e/poetry.lock b/e2e/poetry.lock
index 9b087d3e..3f42b0ad 100644
--- a/e2e/poetry.lock
+++ b/e2e/poetry.lock
@@ -1,8 +0,0 @@
-[[package]]
-name = "atomicwrites"
-version = "1.4.0"
-description = "Atomic file writes."
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*... |
035818f64bfaad897cae95d4e0c7335739246b1b | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-16T08:58:46 | fix: 🐛 fix the truncation (#638) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 205d5849..eaf106a8 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -13 +13 @@
- "firstRows": "huggingface/datasets-server-workers-first_rows:sha-a9824d5"
+ "firstRows": "huggingface/datasets-server-workers-first_row... |
0e28690d1160feea92b61b2280f8479bf22dfa7c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-15T14:11:15 | Add migration job (#636) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index e9a96944..e0eea42e 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -56,2 +56,2 @@ jobs:
- IMAGE_ADMIN: "${{fromJson(needs.get-config.outputs.dockerConfig).dockerImage.services.admin}}"... |
0a10dd7d79abd26019e38aa143d057a2f48a6b81 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-11-08T19:29:02 | ci: 🎡 remove the token for codecov since the repo is public (#633) | diff --git a/.github/workflows/_unit-tests-python.yml b/.github/workflows/_unit-tests-python.yml
index b9e7ebcc..fe8757c7 100644
--- a/.github/workflows/_unit-tests-python.yml
+++ b/.github/workflows/_unit-tests-python.yml
@@ -55 +55,6 @@ jobs:
- run: poetry run python -m pytest -s --cov --cov-report xml:coverag... |
f49e9e5ff41cfb7e36e77ec8c5eac8c12046ba0c | Mishig | mishig.davaadorj@coloradocollege.edu | 2022-11-08T15:50:37 | Update pr docs actions (#632) | diff --git a/.github/workflows/doc-pr-build.yml b/.github/workflows/doc-pr-build.yml
index f962ada5..fe01c960 100644
--- a/.github/workflows/doc-pr-build.yml
+++ b/.github/workflows/doc-pr-build.yml
@@ -18 +18 @@ jobs:
- uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@main
+ uses: huggi... |
06b7d6b38a6121f281a81480c7ce2d2de9aa4d10 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-27T13:27:21 | feat: 🎸 change mongo indexes (following cloud recommendations) (#627) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index ca1dbb97..9d7ff154 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5,2 +5,2 @@
- "admin": "huggingface/datasets-server-services-admin:sha-06e3fab",
- "api": "huggingface/datasets-server-services-api:sha-06e3fab"
+ ... |
f35071fd76e9b7f48a34a3a9928d88d070b89171 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-27T12:28:42 | Limit the started jobs per "dataset namespace" (#626) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index c4eab53f..ca1dbb97 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5,2 +5,2 @@
- "admin": "huggingface/datasets-server-services-admin:sha-8801495",
- "api": "huggingface/datasets-server-services-api:sha-c42fe9a"
+ ... |
88a627da6ee47d9080b61946e620bdc44f448feb | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-26T14:17:19 | feat: 🎸 only sleep for 5 seconds (#625) | diff --git a/chart/values.yaml b/chart/values.yaml
index a182b3e7..f025d025 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -52 +52 @@ queue:
- sleepSeconds: 15
+ sleepSeconds: 5 |
4ab71a111f38df2b7da11974c1c0f3fc44ec0f33 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-26T14:08:49 | Store and compare worker+dataset repo versions (#624) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 84257b33..c4eab53f 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5,2 +5,2 @@
- "admin": "huggingface/datasets-server-services-admin:sha-3513a2b",
- "api": "huggingface/datasets-server-services-api:sha-9cc0bbe"
+ ... |
fd45ff0364c7314a3ab771b9f9cb70991b374636 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-25T19:11:47 | feat: 🎸 sort the configs alphabetically (#623) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 7ba2fe64..84257b33 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -9 +9 @@
- "splits": "huggingface/datasets-server-workers-splits:sha-2365545",
+ "splits": "huggingface/datasets-server-workers-splits:sha-a5134c4",... |
f287ba4d44bbcb1f8f22caaf34375ff10ca603a6 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-25T15:52:12 | fix: 🐛 fix hf-token (#622) | diff --git a/chart/templates/services/admin/_container.tpl b/chart/templates/services/admin/_container.tpl
index f25f232b..5b58d33a 100644
--- a/chart/templates/services/admin/_container.tpl
+++ b/chart/templates/services/admin/_container.tpl
@@ -40 +40,5 @@
- value: {{ .Values.secrets.hfToken | quote }}
+ valueF... |
37e3a8d62324ccbc02bce4c08fdf6109e98c969f | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-25T14:24:15 | test: 💍 missing change in e2e (#621) | diff --git a/e2e/tests/test_21_api_metrics.py b/e2e/tests/test_21_api_metrics.py
index 75a6c27b..ae81c77b 100644
--- a/e2e/tests/test_21_api_metrics.py
+++ b/e2e/tests/test_21_api_metrics.py
@@ -8 +8 @@ from typing import Dict
-from .utils import ADMIN_URL, get
+from .utils import API_URL, get
@@ -19 +19 @@ def test_me... |
554bcee846addbb263349a43bb0627197a77136a | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-25T09:38:42 | Fix api metrics (#620) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index b1b18d4e..e9a96944 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -55,5 +54,0 @@ jobs:
- QUEUE_SLEEP_TIME: "1"
- # hard coded, see e2e/tests/fixtures/hub.py
- COMMON... |
0794216ce17a64afdf35a6623ac4e8f45cea7ba9 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-25T08:39:03 | fix: 🐛 mount the assets directory (#619) | diff --git a/chart/templates/worker/splits/_container.tpl b/chart/templates/worker/splits/_container.tpl
index 7e3d5187..23c68039 100644
--- a/chart/templates/worker/splits/_container.tpl
+++ b/chart/templates/worker/splits/_container.tpl
@@ -61,0 +62,5 @@
+ - mountPath: {{ .Values.cache.assetsDirectory | quote }}
+ ... |
772fa84f35907fd18a70db298cb4095883081239 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-24T19:05:36 | Fix metrics (#618) | diff --git a/.github/workflows/_build_push_docker_hub.yml b/.github/workflows/_build_push_docker_hub.yml
index 4ead5ecb..0a68ba78 100644
--- a/.github/workflows/_build_push_docker_hub.yml
+++ b/.github/workflows/_build_push_docker_hub.yml
@@ -26 +26 @@ jobs:
- uses: actions/checkout@v2
+ uses: actions/che... |
90d30a4ffb836d9c48a19adaefa46eff4821939c | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-21T15:40:12 | Details (#616) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index caaf3842..3ed82223 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -9,2 +9,2 @@
- "splits": "huggingface/datasets-server-workers-splits:sha-5dc1a23",
- "firstRows": "huggingface/datasets-server-workers-first_rows:sh... |
5f6112716f0e65dc4cd13463c2daf3d7c58438a8 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-21T13:55:25 | refactor: 💡 setup everything in the configs (#615) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 4c52231d..caaf3842 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -5,2 +5,2 @@
- "admin": "huggingface/datasets-server-services-admin:sha-ccfbc0c",
- "api": "huggingface/datasets-server-services-api:sha-ccfbc0c",
+... |
705f610c44029eec8f7e98529db4550f5254297f | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-21T09:49:54 | feat: 🎸 change the number of pods (#613) | diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml
index 36999da5..a4b4fafb 100644
--- a/chart/env/prod.yaml
+++ b/chart/env/prod.yaml
@@ -154 +154 @@ splits:
- replicas: 8
+ replicas: 10
@@ -171 +171 @@ firstRows:
- replicas: 34
+ replicas: 32 |
de6909fa7699a5d3bcfa847c30f78c2d90f02cd3 | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-21T09:46:54 | Manage the environment variables and configuration more robustly (#612) | diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml
index 28330ebf..9ce62b88 100644
--- a/.github/workflows/_e2e_tests.yml
+++ b/.github/workflows/_e2e_tests.yml
@@ -57 +57 @@ jobs:
- ROWS_MAX_NUMBER: 4
+ QUEUE_SLEEP_TIME: "1"
@@ -59,4 +59,3 @@ jobs:
- HF_ENDPOINT... |
00edbb39da18379c22965a73cbb99ae7dd96a37b | Sylvain Lesage | sylvain.lesage@huggingface.co | 2022-10-17T20:00:21 | feat: 🎸 remove obsolete DATASETS_REVISION (#611) | diff --git a/chart/docker-images.yaml b/chart/docker-images.yaml
index 6b322ed7..25f5a4a7 100644
--- a/chart/docker-images.yaml
+++ b/chart/docker-images.yaml
@@ -7,2 +7,2 @@
- "splits": "huggingface/datasets-server-workers-splits:sha-e9ce81d",
- "firstRows": "huggingface/datasets-server-workers-first_rows:sh... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.