-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Core] Add retry for failed upsertes and handle circular dependencies
1. Register callbacks of failed entities. 2. When done with upserts, try topological sort on failed entities. 3. On fail of retry because of topological sort - try unsorted upsert. 4. Update topological's sort tree creation so an entity cannot be it's own dependency. 5. Test upsert with dependencies, with self circular dependency and external entity dependency.
- Loading branch information
Ivan Kalinovski
authored and
Ivan Kalinovski
committed
Dec 15, 2024
1 parent
6502e75
commit c89b550
Showing
8 changed files
with
149 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
port_ocean/tests/utils/integrations/mixins/test_sync_raw.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import pytest | ||
from unittest.mock import MagicMock | ||
from port_ocean.context.event import event, event_context, EventType | ||
from port_ocean.exceptions.core import ( | ||
OceanAbortException, | ||
) | ||
from typing import Any | ||
|
||
def create_entity(identifier:str,buleprint:str, dependencies:dict[str,str]=None): | ||
entity = MagicMock() | ||
entity.identifier = identifier | ||
entity.blueprint = buleprint | ||
entity.relations = dependencies or {} | ||
return entity | ||
|
||
async def mock_activate(processed_order:list[str],entity:MagicMock): | ||
processed_order.append(f"{entity.identifier}-{entity.blueprint}") | ||
return True | ||
|
||
@pytest.mark.asyncio | ||
async def test_handle_failed_with_dependencies(): | ||
processed_order:list[str] = [] | ||
entity_a = create_entity("entity_a", "buleprint_a",) # No dependencies | ||
entity_b = create_entity("entity_b", "buleprint_a", {"dep_name_1":"entity_a"}) # Depends on entity_a | ||
entity_c = create_entity("entity_c", "buleprint_b", {"dep_name_2":"entity_b"}) # Depends on entity_b | ||
|
||
|
||
async with event_context(EventType.RESYNC, "manual"): | ||
# Register fails with unsorted order | ||
event.register_failed_upsert_call_arguments(entity_c, lambda: mock_activate(processed_order,entity_c)) | ||
event.register_failed_upsert_call_arguments(entity_a, lambda: mock_activate(processed_order,entity_a)) | ||
event.register_failed_upsert_call_arguments(entity_b, lambda: mock_activate(processed_order,entity_b)) | ||
|
||
await event.handle_failed() | ||
|
||
assert processed_order == ["entity_a-buleprint_a", "entity_b-buleprint_a", "entity_c-buleprint_b"], f"Processed order: {processed_order}" | ||
|
||
@pytest.mark.asyncio | ||
async def test_handle_failed_with_self_dependencies(): | ||
processed_order:list[str] = [] | ||
entity_a = create_entity("entity_a", "buleprint_a",{"dep_name_1":"entity_a"}) # Self dependency | ||
entity_b = create_entity("entity_b", "buleprint_a", {"dep_name_1":"entity_a"}) # Depends on entity_a | ||
entity_c = create_entity("entity_c", "buleprint_b", {"dep_name_2":"entity_b"}) # Depends on entity_b | ||
|
||
|
||
async with event_context(EventType.RESYNC, "manual"): | ||
# Register fails with unsorted order | ||
event.register_failed_upsert_call_arguments(entity_c, lambda: mock_activate(processed_order,entity_c)) | ||
event.register_failed_upsert_call_arguments(entity_a, lambda: mock_activate(processed_order,entity_a)) | ||
event.register_failed_upsert_call_arguments(entity_b, lambda: mock_activate(processed_order,entity_b)) | ||
|
||
await event.handle_failed() | ||
|
||
assert processed_order == ["entity_a-buleprint_a", "entity_b-buleprint_a", "entity_c-buleprint_b"], f"Processed order: {processed_order}" | ||
|
||
@pytest.mark.asyncio | ||
async def test_handle_failed_with_circular_dependencies(): | ||
processed_order:list[str] = [] | ||
entity_a = create_entity("entity_a", "buleprint_a",{"dep_name_1":"entity_b"}) # Self dependency | ||
entity_b = create_entity("entity_b", "buleprint_a", {"dep_name_1":"entity_a"}) # Depends on entity_a | ||
|
||
try: | ||
async with event_context(EventType.RESYNC, "manual"): | ||
# Register fails with unsorted order | ||
event.register_failed_upsert_call_arguments(entity_a, lambda: mock_activate(processed_order,entity_a)) | ||
event.register_failed_upsert_call_arguments(entity_b, lambda: mock_activate(processed_order,entity_b)) | ||
await event.handle_failed() | ||
except OceanAbortException as e: | ||
assert isinstance(e,OceanAbortException) | ||
assert e.args[0] == "Cannot order entities due to cyclic dependencies. \nIf you do want to have cyclic dependencies, please make sure to set the keys 'createMissingRelatedEntities' and 'deleteDependentEntities' in the integration config in Port." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters