Categorygithub.com/yugabyte/pgx/v5
modulepackage
5.5.3-yb-3
Repository: https://github.com/yugabyte/pgx.git
Documentation: pkg.go.dev

# README

YugabyteDB Go Driver

This is a Go Driver based on jackc/pgx, with following additional feature:

Connection load balancing

Users can use this feature in two configurations.

Cluster-aware / Uniform connection load balancing

In the cluster-aware connection load balancing, connections are distributed across all the tservers in the cluster, irrespective of their placements.

To enable the cluster-aware connection load balancing, provide the parameter load_balance set to true as load_balance=true in the connection url or the connection string (DSN style).

"postgres://username:password@localhost:5433/database_name?load_balance=true"

With this parameter specified in the url, the driver will fetch and maintain the list of tservers from the given endpoint (localhost in above example) available in the YugabyteDB cluster and distribute the connections equally across them.

This list is refreshed every 5 minutes, when a new connection request is received.

Application needs to use the same connection url to create every connection it needs, so that the distribution happens equally.

Topology-aware connection load balancing

With topology-aware connnection load balancing, users can target tservers in specific zones by specifying these zones as topology_keys with values in the format cloudname.regionname.zonename. Multiple zones can be specified as comma separated values.

The connections will be distributed equally with the tservers in these zones.

Note that, you would still need to specify load_balance=true to enable the topology-aware connection load balancing.

"postgres://username:password@localhost:5433/database_name?load_balance=true&topology_keys=cloud1.region1.zone1,cloud1.region1.zone2"

Specifying fallback zones

For topology-aware load balancing, you can now specify fallback placements too. This is not applicable for cluster-aware load balancing. Each placement value can be suffixed with a colon (:) followed by a preference value between 1 and 10. A preference value of :1 means it is a primary placement. A preference value of :2 means it is the first fallback placement and so on.If no preference value is provided, it is considered to be a primary placement (equivalent to one with preference value :1). Example given below.

"postgres://username:password@localhost:5433/database_name?load_balance=true&topology_keys=cloud1.region1.zone1:1,cloud1.region1.zone2:2";

You can also use * for specifying all the zones in a given region as shown below. This is not allowed for cloud or region values.

"postgres://username:password@localhost:5433/database_name?load_balance=true&topology_keys=cloud1.region1.*:1,cloud1.region2.*:2";

The driver attempts to connect to a node in following order: the least loaded node in the 1) primary placement(s), else in the 2) first fallback if specified, else in the 3) second fallback if specified and so on. If no nodes are available either in primary placement(s) or in any of the fallback placements, then nodes in the rest of the cluster are attempted. And this repeats for each connection request.

Specifying Refresh Interval

Users can specify Refresh Time Interval, in seconds. It is the time interval between two attempts to refresh the information about cluster nodes. Default is 300. Valid values are integers between 0 and 600. Value 0 means refresh for each connection request. Any value outside this range is ignored and the default is used.

To specify Refresh Interval, use the parameter yb_servers_refresh_interval in the connection url or the connection string.

"postgres://username:password@localhost:5433/database_name?yb_servers_refresh_interval=X&load_balance=true&topology_keys=cloud1.region1.*:1,cloud1.region2.*:2";

Same parameters can be specified in the connection url while using the pgxpool.Connect() API.

For a working example which demonstrates both the configurations of connection load balancing using pgx.Connect() and pgxpool.Connect(), see the driver-examples repository.

Details about the upstream pgx driver - which hold true for this driver as well - are given below.

pgx - PostgreSQL Driver and Toolkit

pgx is a pure Go driver and toolkit for PostgreSQL.

The pgx driver is a low-level, high performance interface. It also includes an adapter for the standard database/sql interface.

The toolkit component is a related set of packages that implement PostgreSQL functionality such as parsing the wire protocol and type mapping between PostgreSQL and Go. These underlying packages can be used to implement alternative drivers, proxies, load balancers, logical replication clients, etc.

Example Usage

package main

import (
	"context"
	"fmt"
	"os"

	"github.com/yugabyte/pgx/v5"
)

func main() {
	// urlExample := "postgres://username:password@localhost:5433/database_name"
	conn, err := pgx.Connect(context.Background(), os.Getenv("DATABASE_URL"))
	if err != nil {
		fmt.Fprintf(os.Stderr, "Unable to connect to database: %v\n", err)
		os.Exit(1)
	}
	defer conn.Close(context.Background())

	var name string
	var weight int64
	err = conn.QueryRow(context.Background(), "select name, weight from widgets where id=$1", 42).Scan(&name, &weight)
	if err != nil {
		fmt.Fprintf(os.Stderr, "QueryRow failed: %v\n", err)
		os.Exit(1)
	}

	fmt.Println(name, weight)
}

See the getting started guide for more information.

Features

  • Support for approximately 70 different PostgreSQL types
  • Automatic statement preparation and caching
  • Batch queries
  • Single-round trip query mode
  • Full TLS connection control
  • Binary format support for custom types (allows for much quicker encoding/decoding)
  • COPY protocol support for faster bulk data loads
  • Tracing and logging support
  • Connection pool with after-connect hook for arbitrary connection setup
  • Conversion of PostgreSQL arrays to Go slice mappings for integers, floats, and strings
  • hstore support
  • json and jsonb support
  • Maps inet and cidr PostgreSQL types to netip.Addr and netip.Prefix
  • Large object support
  • NULL mapping to pointer to pointer
  • Supports database/sql.Scanner and database/sql/driver.Valuer interfaces for custom types
  • Notice response handling
  • Simulated nested transactions with savepoints

Choosing Between the pgx and database/sql Interfaces

The pgx interface is faster.

The pgx interface is recommended when:

  1. The application only targets PostgreSQL.
  2. No other libraries that require database/sql are in use.

It is also possible to use the database/sql interface and convert a connection to the lower-level pgx interface as needed.

Testing

See CONTRIBUTING.md for setup instructions.

Architecture

See the presentation at Golang Estonia, PGX Top to Bottom for a description of pgx architecture.

Supported Go and PostgreSQL Versions

pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For Go that is the two most recent major releases and for PostgreSQL the major releases in the last 5 years. This means pgx supports Go 1.20 and higher and PostgreSQL 12 and higher. pgx also is tested against the latest version of CockroachDB.

Version Policy

pgx follows semantic versioning for the documented public API on stable releases. v5 is the latest stable major version.

PGX Family Libraries

github.com/jackc/pglogrepl

pglogrepl provides functionality to act as a client for PostgreSQL logical replication.

pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For Go that is the two most recent major releases and for PostgreSQL the major releases in the last 5 years. This means pgx supports Go 1.16 and higher and PostgreSQL 10 and higher.

pgmock offers the ability to create a server that mocks the PostgreSQL wire protocol. This is used internally to test pgx by purposely inducing unusual errors. pgproto3 and pgmock together provide most of the foundational tooling required to implement a PostgreSQL proxy or MitM (such as for a custom connection pooler).

github.com/jackc/tern

tern is a stand-alone SQL migration system.

github.com/jackc/pgerrcode

pgerrcode contains constants for the PostgreSQL error codes.

Adapters for 3rd Party Types

github.com/yugabyte/pgx/v4/pgxpool

github.com/yugabyte/pgx/v4/stdlib

Adapters for 3rd Party Loggers

These adapters can be used with the tracelog package.

3rd Party Libraries with PGX Support

github.com/pashagolub/pgxmock

pgxmock is a mock library implementing pgx interfaces. pgxmock has one and only purpose - to simulate pgx behavior in tests, without needing a real database connection.

github.com/georgysavva/scany

Library for scanning data from a database into Go structs and more.

github.com/vingarcia/ksql

A carefully designed SQL client for making using SQL easier, more productive, and less error-prone on Golang.

https://github.com/otan/gopgkrb5

Adds GSSAPI / Kerberos authentication support.

github.com/wcamarao/pmx

Explicit data mapping and scanning library for Go structs and slices.

github.com/stephenafamo/scan

Type safe and flexible package for scanning database data into Go types. Supports, structs, maps, slices and custom mapping functions.

https://github.com/z0ne-dev/mgx

Code first migration library for native pgx (no database/sql abstraction).

# Packages

No description provided by the author
No description provided by the author
Package pgconn is a low-level PostgreSQL database driver.
Package pgproto3 is an encoder and decoder of the PostgreSQL wire protocol version 3.
Do not edit.
Package pgxpool is a concurrency-safe connection pool for pgx.
Package pgxtest provides utilities for testing pgx and packages that integrate with pgx.
Package stdlib is the compatibility layer from pgx to database/sql.
No description provided by the author
Package tracelog provides a tracer that acts as a traditional logger.

# Functions

AppendRows iterates through rows, calling fn for each row, and appending the results into a slice of T.
BeginFunc calls Begin on db and then calls fn.
BeginTxFunc calls BeginTx on db and then calls fn.
CollectExactlyOneRow calls fn for the first row in rows and returns the result.
CollectOneRow calls fn for the first row in rows and returns the result.
CollectRows iterates through rows, calling fn for each row, and collecting the results into a slice of T.
Connect establishes a connection with a PostgreSQL server with a connection string.
ConnectConfig establishes a connection with a PostgreSQL server with a configuration struct.
ConnectWithOptions behaves exactly like Connect with the addition of options.
CopyFromFunc returns a CopyFromSource interface that relies on nxtf for values.
CopyFromRows returns a CopyFromSource interface over the provided rows slice making it usable by *Conn.CopyFrom.
CopyFromSlice returns a CopyFromSource interface over a dynamic func making it usable by *Conn.CopyFrom.
For test purpose.
ForEachRow iterates through rows.
For test purpose.
For test purpose.
No description provided by the author
No description provided by the author
No description provided by the author
ParseConfigWithOptions behaves exactly as ParseConfig does with the addition of options.
RowsFromResultReader returns a Rows that will read from values resultReader and decode with typeMap.
RowTo returns a T scanned from row.
RowTo returns a the address of a T scanned from row.
RowToAddrOfStructByName returns the address of a T scanned from row.
RowToAddrOfStructByNameLax returns the address of a T scanned from row.
RowToAddrOfStructByPos returns the address of a T scanned from row.
RowToMap returns a map scanned from row.
RowToStructByName returns a T scanned from row.
RowToStructByNameLax returns a T scanned from row.
RowToStructByPos returns a T scanned from row.
ScanRow decodes raw row data into dest.

# Constants

PostgreSQL format codes.
No description provided by the author
Indicate to the Go routine processing the requestChan that it should decrease the connection count for the given host by one.
No description provided by the author
Transaction deferrable modes.
Indicate to the Go routine processing the requestChan that it should return a least loaded tserver host, port.
Both the addresses (host, public_ip) of tserver to be tried, but no success with private addresses to create a connection.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Transaction deferrable modes.
Cache statement descriptions (i.e.
Automatically prepare and cache statements.
Get the statement description on every execution.
Assume the PostgreSQL query parameter types based on the Go type of the arguments.
Use the simple protocol.
Transaction isolation levels.
Transaction access modes.
Transaction isolation levels.
Transaction access modes.
No description provided by the author
Transaction isolation levels.
Transaction isolation levels.
PostgreSQL format codes.
Try both the addresses (host, public_ip) of tservers to create a connection.
-- Values for ClusterLoadInfo.flags -- Use private address (host) of tservers to create a connection.
Use public address (public_ip) of tservers to create a connection.

# Variables

No description provided by the author
ErrNoRows occurs when rows are expected but none are returned.
ErrTooManyRows occurs when more rows than expected are returned.
No description provided by the author
ErrTxCommitRollback occurs when an error has occurred in a transaction and Commit() is called.

# Structs

Batch queries are a way of bundling multiple queries together to avoid unnecessary network round trips.
No description provided by the author
Conn is a PostgreSQL connection handle.
ConnConfig contains all the options used to establish a connection.
ExtendedQueryBuilder is used to choose the parameter formats, to format the parameters and to choose the result formats for an extended query.
A LargeObject is a large object stored on the server.
LargeObjects is a structure used to access the large objects API.
ParseConfigOptions contains options that control how a config is built such as getsslpassword.
QueuedQuery is a query that has been queued for execution via a Batch.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TxOptions are transaction modes within a transaction block.

# Interfaces

No description provided by the author
BatchTracer traces SendBatch.
CollectableRow is the subset of Rows methods that a RowToFunc is allowed to call.
ConnectTracer traces Connect and ConnectConfig.
CopyFromSource is the interface used by *Conn.CopyFrom as the source for copy data.
CopyFromTracer traces CopyFrom.
PrepareTracer traces Prepare.
QueryRewriter rewrites a query when used as the first arguments to a query method.
QueryTracer traces Query, QueryRow, and Exec.
Row is a convenience wrapper over Rows that is returned by QueryRow.
Rows is the result set returned from *Conn.Query.
RowScanner scans an entire row at a time into the RowScanner.
Tx represents a database transaction.

# Type aliases

Identifier a PostgreSQL identifier or name.
No description provided by the author
NamedArgs can be used as the first argument to a query method.
No description provided by the author
QueryResultFormats controls the result format (text=0, binary=1) of a query by result column position.
QueryResultFormatsByOID controls the result format (text=0, binary=1) of a query by the result column OID.
RowToFunc is a function that scans or otherwise converts row to a T.
TxAccessMode is the transaction access mode (read write or read only).
TxDeferrableMode is the transaction deferrable mode (deferrable or not deferrable).
TxIsoLevel is the transaction isolation level (serializable, repeatable read, read committed or read uncommitted).