-
Notifications
You must be signed in to change notification settings - Fork 58
Perf: avoid repeated orchestration-history scans for tracing #788
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Bernd Verst (berndverst)
wants to merge
9
commits into
main
Choose a base branch
from
berndverst-fix-trace-history-scan-perf
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
31a5282
Avoid repeated orchestration-history scans for tracing (#769)
d223fc2
Merge remote-tracking branch 'origin/main' into berndverst-fix-trace-…
d20bd2c
Merge origin/main into PR #788
e736e30
Address tracing lookup review feedback
5ff5dcd
Isolate tracing integration test names
9a0c0a4
Merge remote-tracking branch 'origin/main' into berndverst-fix-trace-…
3830a05
Bound tracing history index storage
64670dc
Merge remote-tracking branch 'origin/main' into berndverst-fix-trace-…
0792af0
Address tracing index code quality feedback
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,177 @@ | ||
| // Copyright (c) Microsoft Corporation. | ||
| // Licensed under the MIT License. | ||
|
|
||
| using P = Microsoft.DurableTask.Protobuf; | ||
|
|
||
| namespace Microsoft.DurableTask.Tracing; | ||
|
|
||
| /// <summary> | ||
| /// Provides indexed lookups of past history events by event ID, used to correlate new completion/failure | ||
| /// events (e.g. "TaskCompleted") back to the history event that scheduled them (e.g. "TaskScheduled"). | ||
| /// </summary> | ||
| /// <remarks> | ||
| /// The indexes contain only scheduling event IDs referenced by the current work item's new completion/failure | ||
| /// events. They are built together in one lazy scan and cached for the lifetime of the orchestrator work item. | ||
| /// This avoids both re-scanning the full set of past events for every new event and retaining unrelated history | ||
| /// events, bounding lookup storage by the number of correlation IDs in the current work item. | ||
| /// </remarks> | ||
| sealed class TraceHistoryEventLookup | ||
| { | ||
| readonly IEnumerable<P.HistoryEvent> pastEvents; | ||
|
|
||
| readonly Dictionary<int, P.HistoryEvent?>? taskScheduledEventsByEventId; | ||
| readonly Dictionary<int, P.HistoryEvent?>? subOrchestrationInstanceCreatedEventsByEventId; | ||
|
|
||
| HashSet<int>? duplicateTaskScheduledEventIds; | ||
| HashSet<int>? duplicateSubOrchestrationInstanceCreatedEventIds; | ||
| bool indexesBuilt; | ||
|
|
||
| /// <summary> | ||
| /// Initializes a new instance of the <see cref="TraceHistoryEventLookup"/> class. | ||
| /// </summary> | ||
| /// <param name="pastEvents">The past history events for the current orchestrator work item.</param> | ||
| /// <param name="newEvents">The new history events whose correlation IDs may be looked up.</param> | ||
| public TraceHistoryEventLookup( | ||
| IEnumerable<P.HistoryEvent> pastEvents, | ||
| IEnumerable<P.HistoryEvent> newEvents) | ||
| { | ||
| this.pastEvents = pastEvents; | ||
|
|
||
| foreach (P.HistoryEvent newEvent in newEvents) | ||
| { | ||
| switch (newEvent.EventTypeCase) | ||
| { | ||
| case P.HistoryEvent.EventTypeOneofCase.TaskCompleted: | ||
| this.taskScheduledEventsByEventId ??= new(); | ||
| this.taskScheduledEventsByEventId[newEvent.TaskCompleted.TaskScheduledId] = null; | ||
| break; | ||
|
|
||
| case P.HistoryEvent.EventTypeOneofCase.TaskFailed: | ||
| this.taskScheduledEventsByEventId ??= new(); | ||
| this.taskScheduledEventsByEventId[newEvent.TaskFailed.TaskScheduledId] = null; | ||
| break; | ||
|
|
||
| case P.HistoryEvent.EventTypeOneofCase.SubOrchestrationInstanceCompleted: | ||
| this.subOrchestrationInstanceCreatedEventsByEventId ??= new(); | ||
| this.subOrchestrationInstanceCreatedEventsByEventId[ | ||
| newEvent.SubOrchestrationInstanceCompleted.TaskScheduledId] = null; | ||
| break; | ||
|
|
||
| case P.HistoryEvent.EventTypeOneofCase.SubOrchestrationInstanceFailed: | ||
| this.subOrchestrationInstanceCreatedEventsByEventId ??= new(); | ||
| this.subOrchestrationInstanceCreatedEventsByEventId[ | ||
| newEvent.SubOrchestrationInstanceFailed.TaskScheduledId] = null; | ||
| break; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Gets the "TaskScheduled" history event with the given event ID, if any. | ||
| /// </summary> | ||
| /// <param name="eventId">The event ID to look up.</param> | ||
| /// <returns>The matching event, or <see langword="null"/> if none is found.</returns> | ||
| /// <exception cref="InvalidOperationException"> | ||
| /// Thrown when more than one "TaskScheduled" event has the same event ID. | ||
| /// </exception> | ||
| public P.HistoryEvent? GetTaskScheduledEvent(int eventId) | ||
| { | ||
| this.BuildIndexes(); | ||
| ThrowIfDuplicate( | ||
| this.duplicateTaskScheduledEventIds, | ||
| eventId, | ||
| P.HistoryEvent.EventTypeOneofCase.TaskScheduled); | ||
|
|
||
| return this.taskScheduledEventsByEventId is not null | ||
| && this.taskScheduledEventsByEventId.TryGetValue(eventId, out P.HistoryEvent? historyEvent) | ||
| ? historyEvent | ||
| : null; | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Gets the "SubOrchestrationInstanceCreated" history event with the given event ID, if any. | ||
| /// </summary> | ||
| /// <param name="eventId">The event ID to look up.</param> | ||
| /// <returns>The matching event, or <see langword="null"/> if none is found.</returns> | ||
| /// <exception cref="InvalidOperationException"> | ||
| /// Thrown when more than one "SubOrchestrationInstanceCreated" event has the same event ID. | ||
| /// </exception> | ||
| public P.HistoryEvent? GetSubOrchestrationInstanceCreatedEvent(int eventId) | ||
| { | ||
| this.BuildIndexes(); | ||
| ThrowIfDuplicate( | ||
| this.duplicateSubOrchestrationInstanceCreatedEventIds, | ||
| eventId, | ||
| P.HistoryEvent.EventTypeOneofCase.SubOrchestrationInstanceCreated); | ||
|
|
||
| return this.subOrchestrationInstanceCreatedEventsByEventId is not null | ||
| && this.subOrchestrationInstanceCreatedEventsByEventId.TryGetValue( | ||
| eventId, out P.HistoryEvent? historyEvent) | ||
| ? historyEvent | ||
| : null; | ||
| } | ||
|
|
||
| static void IndexRequestedEvent( | ||
| Dictionary<int, P.HistoryEvent?>? index, | ||
| ref HashSet<int>? duplicateEventIds, | ||
| P.HistoryEvent historyEvent) | ||
| { | ||
| if (index is null | ||
| || !index.TryGetValue(historyEvent.EventId, out P.HistoryEvent? existingEvent)) | ||
| { | ||
| return; | ||
| } | ||
|
|
||
| if (existingEvent is null) | ||
| { | ||
| index[historyEvent.EventId] = historyEvent; | ||
| } | ||
| else | ||
| { | ||
| duplicateEventIds ??= new(); | ||
| duplicateEventIds.Add(historyEvent.EventId); | ||
| } | ||
| } | ||
|
|
||
| static void ThrowIfDuplicate( | ||
| HashSet<int>? duplicateEventIds, | ||
| int eventId, | ||
| P.HistoryEvent.EventTypeOneofCase eventType) | ||
| { | ||
| if (duplicateEventIds?.Contains(eventId) == true) | ||
| { | ||
| throw new InvalidOperationException( | ||
| $"Past orchestration history contains multiple '{eventType}' events with event ID '{eventId}'."); | ||
| } | ||
| } | ||
|
|
||
| void BuildIndexes() | ||
| { | ||
| if (this.indexesBuilt) | ||
| { | ||
| return; | ||
| } | ||
|
|
||
| foreach (P.HistoryEvent historyEvent in this.pastEvents) | ||
| { | ||
| switch (historyEvent.EventTypeCase) | ||
| { | ||
| case P.HistoryEvent.EventTypeOneofCase.TaskScheduled: | ||
| IndexRequestedEvent( | ||
| this.taskScheduledEventsByEventId, | ||
| ref this.duplicateTaskScheduledEventIds, | ||
| historyEvent); | ||
| break; | ||
|
|
||
| case P.HistoryEvent.EventTypeOneofCase.SubOrchestrationInstanceCreated: | ||
| IndexRequestedEvent( | ||
| this.subOrchestrationInstanceCreatedEventsByEventId, | ||
| ref this.duplicateSubOrchestrationInstanceCreatedEventIds, | ||
| historyEvent); | ||
| break; | ||
| } | ||
| } | ||
|
|
||
| this.indexesBuilt = true; | ||
| } | ||
| } |
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.