You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We have large reports where we want to return large amounts of data. These reports are generated pretty low level with raw SQL and we use postgres to serialize to JSON, which speeds things up quite a bit.
We've had to sidestep graphql here, and just return the JSON scalar because serializing with GraphQL adds significant overhead.
Describe the solution you'd like
I've looked a bit at #2699 and what graphql-fragment_cache does using RawValue and wondering if there's perhaps a way to get both types, serialization, and speed, for example with a different base object that doesn't resolve values in any other way than pick out hash keys, e.g RawObject or something like that
Describe alternatives you've considered
Just return raw_value and set the return type to JSON scalar, but this leaves us with no typing for that resolver
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Hey, thanks for the detailed writeup. Off the top of my head, I don't know a way to make serialization faster. I would have suggested RawObject, but as you noticed, that skips type-safety.
I have certainly done all the performance improvements I can find. At this point, we either need:
Detailed profiles (stackprof, whatever) that show where time is spent for your query in particular. Then we could investigate those codepaths and see what can be improved.
Or, a moonshot. For example, GraphQL-Ruby could be faster if it never encountered any kind of batch loading, it could skip a lot of steps. But I don't know a reasonable way to ensure that it never encountered a Promise, etc. (It could be manually configured, but that's so clunky...) Or maybe some kind of query "compiler" which builds plain-Ruby code for known-good queries. Or something else?
So, I don't have an easy fix in mind, but if you're interested in exploring a bit, you definitely have my attention!
Is your feature request related to a problem? Please describe.
We have large reports where we want to return large amounts of data. These reports are generated pretty low level with raw SQL and we use postgres to serialize to JSON, which speeds things up quite a bit.
We've had to sidestep graphql here, and just return the
JSON
scalar because serializing with GraphQL adds significant overhead.Describe the solution you'd like
I've looked a bit at #2699 and what graphql-fragment_cache does using RawValue and wondering if there's perhaps a way to get both types, serialization, and speed, for example with a different base object that doesn't resolve values in any other way than pick out hash keys, e.g
RawObject
or something like thatDescribe alternatives you've considered
Just return raw_value and set the return type to JSON scalar, but this leaves us with no typing for that resolver
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: