Skip to content
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

[proposal] Add @concurrent directive for types #3203

Merged
merged 5 commits into from
Aug 15, 2024

Conversation

krupyansky
Copy link
Contributor

@krupyansky krupyansky commented Jul 30, 2024

We use one goroutine for every element of a list when marshaling the GraphQL object. This performs badly on load tests. We should use goroutines only for network calls, certain other system calls, or expensive parallel calculations. Marshaling isn't an expensive calculation.

In this PR, I propose adding a "@Concurrent" directive that controls this behavior. Lists that have the concurrent type (with @concurrent directive) will have generated code as is now. But lists without the concurrent type (without @Concurrent directive) will not have concurrent unmarshalling code.

Added pull request for issue #3202

@StevenACoffman StevenACoffman changed the title Feature/3202 [proposal] Add @concurrent directive for types Aug 4, 2024
@coveralls
Copy link

Coverage Status

coverage: 74.751% (+0.03%) from 74.72%
when pulling cf297ef on krupyansky:feature/3202
into 9b031e4 on 99designs:master.

@StevenACoffman
Copy link
Collaborator

I reworded the PR description from your initial issue. Please confirm it matches your intention.

@krupyansky
Copy link
Contributor Author

@StevenACoffman confirm

@krupyansky
Copy link
Contributor Author

@StevenACoffman сan you confirm that these changes are relevant for your library and are accepted?

@StevenACoffman StevenACoffman merged commit 2f7772c into 99designs:master Aug 15, 2024
16 checks passed
@StevenACoffman
Copy link
Collaborator

Thank you! I appreciate that you gave people the ability to opt-in to the current behavior that they have been relying on.

I've been a little busy at work lately, so I'm sorry I haven't been able to be as responsive as usual.

@adomaskizogian
Copy link

Are there any benchmarks or data collected on what impact does this change have for services under high load?

@razorness
Copy link

razorness commented Sep 13, 2024

@krupyansky @StevenACoffman This merge broke dataloaders behind field resolvers as in dataloadgen-example for so many users in v0.17.50. :-)

It took me some time to find out that field resolvers are not executed concurrently anymore and you have to set the newly introduced and undocumented @concurrent directive on OBJECT and cascade where needed.

So, from now, if you want to use dataloader pattern behind field resolvers, you have these important places for preparation:

  • add field resolver in gqlgen.yml
  • add directive @concurrent on OBJECT definition to schema.graphql
  • implement an empty @concurrent directive at generated.Config.Directives.Concurrent
  • add @concurrent directive on object type with multiple field resolvers for dataloaders
  • add @concurrent on every other object type which contains field resolvers at any depth and can be returned in an array

Honestly, this adds pretty much complexity. Field resolvers are meant for heavy work like fetching from database. Dataloaders are very common to get rid of N+1 problem. One missing @concurrent directive and your dataloaders shoot into the void. Furthermore does @concurrent change behavior in multiple directions:

  1. underlying field resolvers at any depth that you want to work in parallel
  2. arrays holding your object type

Here is an example with pagination and a field resolver for dataloader pattern which gets really complex right now:

schema.graphql:

directive @concurrent on OBJECT

type Query {
  getBooks(first: Int!, after: String): BookConnection
}

type BookConnection {
  totalCount: Int!
  # `@concurrent` at `BookEdge` makes iteration of this array concurrent, if not done, 
  # dataloader behind `Book.writer` and `Book.publisher` cannot work
  edges: [BookEdge!]!
  pageInfo: PageInfo!
}

# add @concurrent to make marshalling `BookEdge` concurrent 
# in `BookConnection.edges`, so that dataloader behind `Book.Writer` and `Book.Publisher`
# can work at all
type BookEdge @concurrent {
  cursor: String!
  node: Book!
}

# add @concurrent to make `writer` and `publisher` fetchable in parallel
type Book @concurrent {
  id: ID!
  name: String!
  isbn: String!
  writer: Writer!
  publisher: Publisher!
}

type Writer {
  id: ID!
  name: String!
}

type Publisher {
  id: ID!
  name: String!
}

gqlgen.yml:

models:
  Book:
    fields:
      # make Book.writer a field resolver
      writer:
        resolver: true
      # make Book.writer a field resolver
      publisher:
        resolver: true

@Metamogul
Copy link

Metamogul commented Sep 16, 2024

Thanks for the note, @razorness. I accidentally discovered this behavior today when debugging a failed test, eventually leading me here. I find the consequences in regard to dataloaders pretty devastating. I think this should be implemented in a non-breaking way, making the changed behavior opt-in, not the previous implementation.

I didn't find a ticket addressing the issue, so I created one: #3285

@krupyansky @StevenACoffman I'd appreciate your thoughts on the matter. Maybe we move the discussion to the new ticket?

@krupyansky
Copy link
Contributor Author

@StevenACoffman @razorness @Metamogul i made fix

#3286

Please give me review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants