Uh oh!
There was an error while loading. Please reload this page.
Enables NIO-based Concurrent Execution - #164
Closed
NeedleInAJayStack wants to merge 3 commits into
Closed
Conversation
NeedleInAJayStackforce-pushed
the
feat/concurrent-execution
branch
from
January 26, 2025 05:51
b481087 to
24b5606Comparepaulofaria
commented
Jan 29, 2025
Member
Is this good for review? |
NeedleInAJayStackforce-pushed
the
feat/concurrent-execution
branch
from
June 21, 2025 06:12
24b5606 to
668c217Compareadam-fowler
commented
Jun 21, 2025
Contributor
Any reason you aren't moving to Swift concurrency? |
NeedleInAJayStack
commented
Jun 24, 2025
MemberAuthor
No, no reason in particular. This was opened back in January, and I was hoping that it would be a pretty small change to align with the intuition of a Concurrent executor. You make a great point though - if we're going to make a breaking change, I think it makes sense for us to move completely onto Swift Concurrency and drop NIO support. I've started an MR for that here: #166 I'd love your feedback!! |
paulofaria
commented
Jul 3, 2025
Member
@NeedleInAJayStack can I close this PR? |
NeedleInAJayStack
commented
Jul 4, 2025
MemberAuthor
@paulofaria Yeah, let's close it. Closing in favor of #166 |
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 freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The existing concurrent executor was a mix of
DispatchQueue.asynccalls and NIO futures, and was only used on an opt-in basis.This makes the following changes:
This should better parallelize GraphQL queries by default, resulting in improved performance.
Changes to default values are typically considered major, however this seems to be an exception. The GraphQL spec states the resolvers of queries must be side-effect free and idempotent, the execution order must not affect the result, which means that this can be considered a minor based on the resolver idempotency agreement.
The reasoning for the deprecation is that the JavaScript reference implementation does not expose executor implementations to the caller, instead always executing query and subscription concurrently and mutation serially. Furthermore, Graphiti does not allow customization of executors, implying that it is a rarely used feature.