Article contains some cases for migrate from
github.com/yandex-cloud/ydb-go-sdk/v2/ydbsql
togithub.com/ydb-platform/ydb-go-sdk/v3
Note: the article is being updated.
Package database/sql
provides two ways for making driver:
- from connection string (see sql.Open(driverName, connectionString))
- from custom connector (see sql.OpenDB(connector))
Second way (making driver from connector) are different in v2
and v3
:
- in
v2
:ydbsql.Connector
returns single result (sql.driver.Connector
) and init driver lazy on first request. This design causes rare errors.db := sql.OpenDB(ydbsql.Connector( ydbsql.WithDialer(dialer), ydbsql.WithEndpoint(params.endpoint), ydbsql.WithClient(&table.Client{ Driver: driver, }), )) defer db.Close()
- in
v3
:ydb.Connector
createssql.driver.Connector
from nativeYDB
driver, returns two results (sql.driver..Connector
and error) and exclude some lazy driver initialization.nativeDriver, err := ydb.Open(context.TODO(), "grpc://localhost:2136/local") if err != nil { // fallback on error } defer nativeDriver.Close(context.TODO()) connector, err := ydb.Connector(nativeDriver) if err != nil { // fallback on error } db := sql.OpenDB(connector) defer db.Close()
In ydb-go-sdk/v2/ydbsql
was allowed sql.LevelReadCommitted
and sql.LevelReadUncommitted
isolation levels for read-only interactive transactions. It implements with fake transaction with true OnlineReadOnly
transaction control on each query inside transaction.
Transaction controls OnlineReadOnly
and StaleReadOnly
will deprecate in the future.
That's why ydb-go-sdk/v3
allowed only sql.LevelSnapshot
for read-only interactive transactions. Currently, snapshot isolation implements over fake
transaction with true OnlineReadOnly
transaction control on each request inside transaction.
YDB implements snapshot isolation, but this feature is not deployed on YDB clusters now. After full deploying on each YDB cluster fake transaction will be replaced to true read-only interactive transaction with snapshot isolation level.