Commits on Source (54)
-
Antoine Lambert authored
This fixes python 3.7 support due to poetry, a dependency of isort, that removed support for that Python version in a recent release.
-
Jérémy Bobbio (Lunar) authored
Related to swh/meta#4959
-
Antoine Lambert authored
Related to swh/meta#4960
-
Jérémy Bobbio (Lunar) authored
GitLab will display the content of the README file when browsing the repository. But in case the file is a symlink, it will display the path pointed by the symlink. There is a 6 year old issue about this: https://gitlab.com/gitlab-org/gitlab/-/issues/15093 We can workaround the issue by having the content at the root of the repository and a symlink to this file in the `docs/` directory. Tested in swh/devel/swh-py-template!27
-
vlorentz authored
-
vlorentz authored
-
vlorentz authored
-
vlorentz authored
-
vlorentz authored
-
Antoine Lambert authored
That function from swh.core.config was removed in swh/devel/swh-core@2663c0a4.
-
Antoine Lambert authored
Latest sentry-sdk release now raises a BadDsn exception when DSN format does not match the expected one.
-
David Douard authored
It now needs types-click which is indeed a dependency of swh.core[testing].
-
Antoine Lambert authored
Since commit swh/devel/swh-core@89d48572, the "swh db init" command attempts to instantiate the postgresql backend of a swh module using the get_datastore function of the module with a "cls" and "db" parameters. While it works fine for most of swh modules, it does not for the vault as more parameters are expected by the "get_vault" function and thus the database init is failing. The issue was spotted in the docker environment after updating the swh/stack image. So extract postgresql backend initialization for the vault in a new class named VaultBackendDataStore and set it as swh.vault.get_datastore attribute value.
-
Antoine Lambert authored
This new method returns a direct download URL for a cooked bundle if the vault cache backend supports the feature. The backend implementation simply wraps a call to the download_url method from the objstorage used as vault cache. Related to #885.
-
vlorentz authored
The symlink representation is slightly ambiguous, so not necessarily very useful. Additionally, it made directory-flat bundles differ from a non-recursive 'git clone' checkout, which confuses Guix and potentially other tools. We may revisit this in the future, eg. by adding a dotfile in the directory or metadata at the root.
-
Antoine R. Dumont authored
This fixes the sdist build warnings about importable packages (swh.vault.sql, swh.vault.sql.upgrades). [1] This aligns with the swh.storage's setup.py. [1] for package in swh.vault.sql swh.vault.sql.upgrades ``` ############################ # Package would be ignored # ############################ Python recognizes '$package' as an importable package, but it is not listed in the `packages` configuration of setuptools. '$package' has been automatically added to the distribution only because it may contain data files, but this behavior is likely to change in future versions of setuptools (and therefore is considered deprecated). Please make sure that '$package' is included as a package by using the `packages` configuration field or the proper discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" and "data files" on setuptools documentation page. ``` Refs. swh/infra/sysadm-environment#5044
-
Antoine Lambert authored
It might happen that the scheduler RPC service is failing when attempting to submit a vault cooking task. So prefer to insert cooking task info in vault database once the task successfully created by the scheduler. Previously, the non created cooking task was inserted in database with a null task id and a new status which prevented to create a new one once the scheduler service rpc issue fixed. Related to swh/infra/sysadm-environment#5055.
-
Antoine Lambert authored
Due to an invalid test and reference path, the master reference was missing in the git repository cooked from a SWH release. The following git-fsck error was reported: notice: HEAD points to an unborn branch (master)
-
David Douard authored
So that we can get rid of vault task types being created from swh-schedulers' sql init scripts.
-
David Douard authored
Try to be nice with sysadmins... Also the code in `backends.py` actually depends on these names...
-
David Douard authored
-
David Douard authored
-
David Douard authored
-
David Douard authored
-
David Douard authored
This is required to allow mirrors specify these. A better solution might be needed in the future, but this should do the job for now.
-
Antoine Lambert authored
Previously when cooking a directory, contents bytes were fetched sequentially which could take a good amount of time for large directories. In order to speedup the cooking process, retrieve the contents bytes in parallel with the help of the concurrent.futures module from the Python standard library which fits particularly well for making loops of I/O-bound tasks concurrent and for issuing tasks asynchronously.
-
Antoine Lambert authored
As in the git bare cooker, allow to optionally use objstorage directly to fetch content bytes when cooking a directory.
-
Antoine Lambert authored
It enables to push new files to download asynchronously while fetching sub-directories and thus slightly improve the overall cooking performance. It should also reduce the memory consumption of the cooking process.
-
Antoine Lambert authored
Previously when cooking a git bare repository, contents bytes were fetched sequentially which could take a good amount of time for an origin with a large revisions history. In order to speedup the cooking process, retrieve the contents bytes in parallel with the help of the concurrent.futures module from the Python standard library which fits particularly well for making loops of I/O-bound tasks concurrent and for issuing tasks asynchronously.
-
Antoine Lambert authored
As stated in the official Python documentation, users should generally prefer to use concurrent.futures which has a simpler interface that was designed around threads from the start.
-
Antoine Lambert authored
Previously only a couple of them were cherry-picked. Also add objstorage typing and use swh.objstorage.interface.objid_from_dict to remove some explicit type casting.
-
Nicolas Dandrimont authored
-
Nicolas Dandrimont authored
-
Antoine Lambert authored
-
Antoine Lambert authored
Related to swh/meta#5075.
-
vlorentz authored
This is going to happen in swh-storage v3.0.0
-
vlorentz authored
We are about to make the git-bare cooker public, so we decided to remove this override. It means git-fsck will reject the objects, but we could not find an acceptable alternative.
-
David Douard authored
-
Pierre-Yves David authored
-
Pierre-Yves David authored
-
Antoine Lambert authored
The oldest part of the scheduler API was updated to use model classes (based on attr package) instead of dictionaries in order to improve typing.
-
Antoine Lambert authored
We no longer use legacy versions of pytest so we can safely remove that code.
-
Antoine Lambert authored
It can exist cases when a bundle has been cooked and marked as done in the vault database but is no longer available in the vault cache. Previously, when requesting a new cooking of such bundle, the vault backend was not creating a new cooking task and thus the bundle could not be downloaded anymore. So ensure to check bundle presence in cache for such edge case and force its recooking if it is not the case. Related to swh-web#4804.
-
David Douard authored
-
Antoine Lambert authored
-
David Douard authored
Normalize the vault db for swh.core 3.6 with improved `swh db` handling capabilities. Remove test_init.py, it's now outdated.
-
David Douard authored
-
David Douard authored
-
David Douard authored
Add a test to check all registered backends load OK.
-
Antoine Lambert authored
Bump development tools: mypy, codespell, isort, ... Move all tools configuration in pyproject.toml. Remove no longer needed mypy overrides.
-
Antoine Lambert authored
-
Antoine Lambert authored
-
Pierre-Yves David authored
-
Nicolas Dandrimont authored
Showing
- .copier-answers.yml 11 additions, 0 deletions.copier-answers.yml
- .git-blame-ignore-revs 2 additions, 3 deletions.git-blame-ignore-revs
- .gitignore 11 additions, 8 deletions.gitignore
- .pre-commit-config.yaml 28 additions, 15 deletions.pre-commit-config.yaml
- CODE_OF_CONDUCT.md 1 addition, 1 deletionCODE_OF_CONDUCT.md
- MANIFEST.in 0 additions, 10 deletionsMANIFEST.in
- README.rst 15 additions, 1 deletionREADME.rst
- README.rst 15 additions, 1 deletionREADME.rst
- conftest.py 1 addition, 2 deletionsconftest.py
- docs/Makefile 1 addition, 1 deletiondocs/Makefile
- docs/README.rst 1 addition, 15 deletionsdocs/README.rst
- docs/README.rst 1 addition, 15 deletionsdocs/README.rst
- mypy.ini 0 additions, 27 deletionsmypy.ini
- pyproject.toml 92 additions, 1 deletionpyproject.toml
- pytest.ini 0 additions, 6 deletionspytest.ini
- requirements-swh.txt 5 additions, 5 deletionsrequirements-swh.txt
- requirements-test.txt 7 additions, 2 deletionsrequirements-test.txt
- requirements.txt 2 additions, 1 deletionrequirements.txt
- setup.cfg 0 additions, 8 deletionssetup.cfg
- setup.py 0 additions, 74 deletionssetup.py
.copier-answers.yml
0 → 100644
MANIFEST.in
deleted
100644 → 0
README.rst
deleted
120000 → 0
README.rst
0 → 100644
docs/README.rst
deleted
100644 → 0
docs/README.rst
0 → 120000
mypy.ini
deleted
100644 → 0
pytest.ini
deleted
100644 → 0
setup.cfg
deleted
100644 → 0
setup.py
deleted
100755 → 0