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
Now that go-sql-driver/mysql#608 has been merged, fixing go-sql-driver/mysql#496, we can start passing along our RPC contexts to the database layer. This will improve our load shedding, since we will avoid sending queries for which the RPC timeout has already expired.
Since we use Gorp as a middle layer for our database access, we will need support for contexts to be implemented there.
The text was updated successfully, but these errors were encountered:
$ GORP_TEST_DIALECT=gomysql \
GORP_TEST_DSN="root@tcp(10.77.77.2:3306)/boulder_sa_integration" \
go test gopkg.in/go-gorp/gorp.v2
ok gopkg.in/go-gorp/gorp.v2 24.283s
Fixes#3890Fixes#3488
Part of #2819
I'm considering this done for now. There are some places that use the DB but don't currently have contexts, like ocsp-updater, admin-revoker, and so on. But I don't think they currently need them.
Now that go-sql-driver/mysql#608 has been merged, fixing go-sql-driver/mysql#496, we can start passing along our RPC contexts to the database layer. This will improve our load shedding, since we will avoid sending queries for which the RPC timeout has already expired.
Since we use Gorp as a middle layer for our database access, we will need support for contexts to be implemented there.
The text was updated successfully, but these errors were encountered: