feat(durablejobs): port to journaled storage catalog#10148
Merged
ReubenBond merged 4 commits intoMay 30, 2026
Conversation
Recreate the DurableJobs implementation on top of the Azure Blob journal compaction work. Replace the older shard storage implementation with journaled shard management and provider-neutral catalog APIs, while preserving the target Azure journaling compaction implementation. * Add IJournalStorageCatalog, JournalStorageId, JournalStoragePrefix, JournalStorageProperties, and VolatileJournalStorage in Orleans.Journaling. * Add JobShardId, JournaledJobShard, JournaledJobShardManager, JournaledJobShardState, and DurableJobsJsonContext in Orleans.DurableJobs; remove the now-unused InMemoryJobShard / AzureStorageJobShard implementations and the netstring JSON serializer support. * Update Orleans.Journaling.AzureStorage to host blob-backed journals via AzureBlobJournalStorageProvider; trim the journaling storage API surface and unify journal storage abstractions. * Register the shared journaling state services and factory as singleton so singleton durable job services do not capture scoped dependencies. * Wire DurableJobs catalog/shard tests across InMemory and Azure providers and update the public API surface accordingly. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced May 29, 2026
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Add representative durable jobs coverage for journaled shard management and split Azure-backed DurableJobs tests into a dedicated project. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Restore shared DurableJobs shard-manager scenario coverage over the journaled shard manager and run it against both volatile journal storage and Azure Blob-backed DurableJobs storage. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced Jun 14, 2026
This was referenced Jun 22, 2026
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Ports DurableJobs from the Azure-specific shard implementation to the shared journaling storage catalog model.
This introduces journaled DurableJobs shard state, journal storage catalog abstractions, volatile journal storage coverage, and updates the DurableJobs tests and public API surface for the new storage model.
Microsoft Reviewers: Open in CodeFlow