Project 'infra/sysadm-environment' was moved to 'swh/infra/sysadm-environment'. Please update any links and bookmarks that may still have the old path.
- Mar 26, 2025
-
-
Nicolas Dandrimont authored
This is now completely handled as a journal client in swh.counters, so this code has not run in years (except in tests). It also introduces a strict dependency between swh.storage and swh.journal via swh.counters, which should not be needed.
-
Nicolas Dandrimont authored
-
- Mar 24, 2025
-
-
Antoine Lambert authored
It allows to avoid tests flakiness by preventing the creation of a new storage instance when tearing down the swh_storage_cassandra_backend_config fixure.
-
Antoine Lambert authored
-
Antoine Lambert authored
Storage content cannot be persisted across multiple memory storage instances in the same test so some tests were failing.
-
Antoine Lambert authored
Some cassandra request timeouts have been observed on Jenkins when tearing down the swh_storage_cassandra_backend_config fixture so execute those requests with retries to mitigate these issues.
-
- Mar 21, 2025
-
-
Pierre-Yves David authored
This will need coordination with other MR migrating other part of swh to psycopg3, more notably, swh-core. Updates various imports and names. Adjusts syntax query and parameter to what psycopg3 expect. The `origins_are_blocked` of the Blocking proxy class needed significant rework for equivalent features. Dropped timezone related work around that existed for psycopg2 < 2.9.0 Adjust the way we retrieve the connection information. This update as the same caveas as for swh-core and needs some double check. Use the dedicated `psycopg_pool` package for connection pull. Adds a small `execute_values_generator` helper to match existing code expectation better (reducing the complexity of this diff). Drops a call to the deprecated and noop `app.setup_psycopg_errorhandlers` Add more type to help mypy and catch errors.
- Mar 19, 2025
-
-
Antoine Lambert authored
Modify swh_storage_cassandra_cluster to ensure a single instance of cassandra is spawned when running tests in parallel with pytest-xdist. Explicitly shutdown clusters create by CqlRunner instances to avoid the display of traceback related to Python threads when cassandra related fixtures are tear downed. These changes significantly reduce the time to execute a tox session (more than a x2 speedup).
-
Antoine Lambert authored
It allows to avoid the display of tracebacks related to Python threads when cassandra related pytest fixtures are tear downed.
-
- Mar 18, 2025
-
- Mar 17, 2025
-
- Mar 13, 2025
-
-
Antoine Lambert authored
Side effect of adding typing to swh.core.utils.grouper.
-
- Feb 25, 2025
-
-
Antoine Lambert authored
-
Antoine Lambert authored
This notably removes all the warnings related to comparing a ModelObjectType enum with a string literal. As a consequence ModelObjectType enum are used as dict keys instead of literal strings.
-
Antoine Lambert authored
-
- Feb 20, 2025
-
- Feb 19, 2025
-
-
Nicolas Dandrimont authored
This is used by recent versions of the cassandra Debian package to override the log directory.
-
- Feb 18, 2025
-
-
This was used at the time we were building debian packages for swh components but we no longer do that.
-
- Feb 17, 2025
-
-
Antoine Lambert authored
hypothesis uncovered some edge cases datetime objects where Python will produce a timestamp offset by one second due to an unexpected rounding, likely due to float point precision issue during computation. Set datetime microseconds to 0 before calling the timestamp method to avoid such side effect and ensure converted date will be the same as the input one. Fixes #4720.
-
Antoine Lambert authored
-
Antoine Lambert authored
Bump development tools: mypy, codespell, isort, ... Move all tools configuration in pyproject.toml. Remove no longer needed mypy overrides.
-
- Feb 13, 2025
-
-
Antoine R. Dumont authored
It expected a simple cls cassandra so far but it does not reflect the production use case (we deploy storage cassandra with pipeline configuration).
-
- Feb 05, 2025
-
-
Antoine Lambert authored
It has been observed calling that method can lead to cassandra query timeout when a snapshot contains a large amount of branches. The performance bottleneck seems to be the use of a custom cassandra aggregate function computing the number of branches per target type. Removing the use of that function and performing the aggregation client side significantly improves query performance and makes the timeout issue goes away. Fixes #4719.
-
- Jan 14, 2025
-
-
Antoine Lambert authored
The assertion was failing when executing the code so use a different one to keep mypy happy. Also add test to ensure the diagram generation code is covered.
-
- Dec 16, 2024
-
-
vlorentz authored
-
- Dec 11, 2024
-
-
vlorentz authored
- Nov 27, 2024
-
-
Antoine Lambert authored
This should speed up a bit tests execution on Jenkins. Use pytest option --dist=loadfile to group tests by their containing file in order to avoid spawning too many cassandra or postgres instances.
-
Antoine Lambert authored
Recent changes in swh-storage added the PartitionsManagementInterface but this interface is only implemented on real storage backends, not proxies. Any client code overriding the swh_storage_backend_config to return a storage pipeline (loaders for instance) ends up with error otherwise.
-
vlorentz authored
Through a `table_option` dict in the config, mapping table names to what to add to the `WITH` clause of the `CREATE TABLE` clause.
-
- Nov 26, 2024
-
-
vlorentz authored
This abstracts this interface from the PostgreSQL-specific implementation, allowing the object_references table to be sharded in Cassandra.
- Nov 08, 2024
-
-
vlorentz authored
- Nov 05, 2024
-
-
vlorentz authored
The storage returned by swh_storage() must be either the same as swh_storage_backend(), or be a chain of proxies to it. This allows tests to act on the backend using methods not available on proxies or the RPC
-
- Oct 31, 2024
-
-
David Douard authored
Check these 2 backends can be initialized with `swh db` commands using both the backend syntax (<package>:<cls>) and the full module name (eg. storage.proxies.masking). This requires swh.core 3.6.1 which includes a fix for these.
-
- Oct 30, 2024
-
-
David Douard authored
-