Skip to content
Snippets Groups Projects
Commit 3309765d authored by vlorentz's avatar vlorentz
Browse files

buffer: Add support for 'extid'

Will be used by the extid migration script, and loaders can probably
use it too.
parent cfb2417f
No related branches found
Tags v0.27.1
1 merge request!663buffer: Add support for 'extid'
......@@ -14,7 +14,13 @@ from swh.storage import get_storage
from swh.storage.interface import StorageInterface
LObjectType = Literal[
"content", "skipped_content", "directory", "revision", "release", "snapshot"
"content",
"skipped_content",
"directory",
"revision",
"release",
"snapshot",
"extid",
]
OBJECT_TYPES: Tuple[LObjectType, ...] = (
"content",
......@@ -23,6 +29,7 @@ OBJECT_TYPES: Tuple[LObjectType, ...] = (
"revision",
"release",
"snapshot",
"extid",
)
DEFAULT_BUFFER_THRESHOLDS: Dict[str, int] = {
......@@ -33,6 +40,7 @@ DEFAULT_BUFFER_THRESHOLDS: Dict[str, int] = {
"revision": 100000,
"release": 100000,
"snapshot": 25000,
"extid": 10000,
}
......
......@@ -161,6 +161,70 @@ def test_buffering_proxy_storage_skipped_content_deduplicate(sample_data):
assert s == {}
def test_buffering_proxy_storage_extid_threshold_not_hit(sample_data) -> None:
extid = sample_data.extid1
storage = get_storage_with_buffer_config(min_batch_size={"extid": 10,})
s = storage.extid_add([extid])
assert s == {}
present_extids = storage.extid_get_from_target(
extid.target.object_type, [extid.target.object_id]
)
assert list(present_extids) == []
s = storage.flush()
assert s == {
"extid:add": 1,
}
present_extids = storage.extid_get_from_target(
extid.target.object_type, [extid.target.object_id]
)
assert list(present_extids) == [extid]
def test_buffering_proxy_storage_extid_threshold_hit(sample_data) -> None:
extid = sample_data.extid1
storage = get_storage_with_buffer_config(min_batch_size={"extid": 1,})
s = storage.extid_add([extid])
assert s == {
"extid:add": 1,
}
present_extids = storage.extid_get_from_target(
extid.target.object_type, [extid.target.object_id]
)
assert list(present_extids) == [extid]
s = storage.flush()
assert s == {}
def test_buffering_proxy_storage_extid_deduplicate(sample_data) -> None:
extids = sample_data.extids[:2]
storage = get_storage_with_buffer_config(min_batch_size={"extid": 2,})
s = storage.extid_add([extids[0], extids[0]])
assert s == {}
s = storage.extid_add([extids[0]])
assert s == {}
s = storage.extid_add([extids[1]])
assert s == {
"extid:add": 1 + 1,
}
for extid in extids:
present_extids = storage.extid_get_from_target(
extid.target.object_type, [extid.target.object_id]
)
assert list(present_extids) == [extid]
s = storage.flush()
assert s == {}
def test_buffering_proxy_storage_directory_threshold_not_hit(sample_data) -> None:
directory = sample_data.directory
storage = get_storage_with_buffer_config(min_batch_size={"directory": 10,})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment