hasql
provides simple and reliable way to access high-availability database setups with multiple hosts.
hasql
is production-ready and is actively used inside Yandex' production environment.
With Go module support, simply add the following import
import "golang.yandex/hasql"
to your code, and then go [build|run|test]
will automatically fetch the
necessary dependencies.
Otherwise, to install the hasql
package, run the following command:
$ go get -u golang.yandex/hasql
hasql
operates using standard database/sql
connection pool objects. User creates *sql.DB
objects for each node of database cluster and passes them to constructor. Library keeps up to date information on state of each node by 'pinging' them periodically. User is provided with a set of interfaces to retrieve *sql.DB
object suitable for required operation.
dbFoo, _ := sql.Open("pgx", "host=foo")
dbBar, _ := sql.Open("pgx", "host=bar")
cl, err := hasql.NewCluster(
[]hasql.Node{hasql.NewNode("foo", dbFoo), hasql.NewNode("bar", dbBar) },
checkers.PostgreSQL,
)
if err != nil { ... }
node := cl.Primary()
if node == nil {
err := cl.Err() // most recent errors for all nodes in the cluster
}
// Do anything you like
fmt.Println("Node address", node.Addr)
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
if err = node.DB().PingContext(ctx); err != nil { ... }
hasql
does not configure provided connection pools in any way. It is user's job to set them up properly. Library does handle their lifetime though - pools are closed when Cluster
object is closed.
Alive primary|Alive standby|Any alive node, or none otherwise
node := c.Primary()
if node == nil { ... }
Alive primary|Alive standby, or any alive node, or none otherwise
node := c.PreferPrimary()
if node == nil { ... }
Any of currently alive nodes satisfying criteria, or none otherwise
node := c.Primary()
if node == nil { ... }
Any of currently alive nodes satisfying criteria, or wait for one to become alive
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
node, err := c.WaitForPrimary(ctx)
if err == nil { ... }
When user asks Cluster
object for a node a random one from a list of suitable nodes is returned. User can override this behavior by providing a custom node picker.
Library provides a couple of predefined pickers. For example if user wants 'closest' node (with lowest latency) PickNodeClosest
picker should be used.
cl, err := hasql.NewCluster(
[]hasql.Node{hasql.NewNode("foo", dbFoo), hasql.NewNode("bar", dbBar) },
checkers.PostgreSQL,
hasql.WithNodePicker(hasql.PickNodeClosest()),
)
if err != nil { ... }
Since library works over standard database/sql
it supports any database that has a database/sql
driver. All it requires is a database-specific checker function that can tell if node is primary or standby.
Check out golang.yandex/hasql/checkers
package for more information.
Node's state is transient at any given time. If Primary()
returns a node it does not mean that node is still primary when you execute statement on it. All it means is that it was primary when it was last checked. Nodes can change their state at a whim or even go offline and hasql
can't control it in any manner.
This is one of the reasons why nodes do not expose their perceived state to user.
You can add instrumentation via Tracer
object similar to httptrace in standard library.
hasql
can operate over database/sql
pools wrapped with sqlx. It works the same as with standard library but requires user to import golang.yandex/hasql/sqlx
instead.
Refer to golang.yandex/hasql/sqlx
package for more information.