Matt Robenolt

Results 178 comments of Matt Robenolt

Cool. I’ll take the time after we ship this into production to put together a PR in here and try to figure out some tests. I’ll focus on the connectionpool...

@slashrsm Since this PR is almost a year old, would you just like to submit a new one? Not sure if OP will see and update. :)

@strix-technica Seems that you've broken tests. :)

This is a functioning POC https://gist.github.com/mattrobenolt/6ca8c37185578cac8970de5a82dcfd52 It definitely needs more work. I also talked with the `buf` folks, and they agree that we should vendor in their codec stuff like...

I can only assume a version bump if `python-gitlab` has completely changed their API and we aren't correctly pinning. :(

👋 hey there, do you have any code you can share that reflects this? I'm curious if the impact is purely on boot up time of the lambda and not...

Also, not that it should affect this too much, are you using the global connection endpoint? e.g. aws.connect.psdb.cloud as opposed to {region}.connect.psdb.cloud. It should definitely speed up initial connection times...

Yeah, that's an interesting trace since it's mostly suggesting to me that the actual execution and response time of the query is faster with the HTTP driver by a significant...

Oh, I just realized you're using this: https://www.npmjs.com/package/got-fetch as the fetch implementation. I wonder if there are some incompatibility issues there? I'm pretty confident we've tested with https://www.npmjs.com/package/node-fetch and the...

I just put together a very small test for this and it seems fine with `got-fetch` outside of lambda: index.js: ```javascript import 'process'; import {Client} from '@planetscale/database'; import gotFetch from...