Skip to main content

psycopg2 - Python-PostgreSQL Database Adapter

Project description

Psycopg is the most popular PostgreSQL database adapter for the Python programming language. Its main features are the complete implementation of the Python DB API 2.0 specification and the thread safety (several threads can share the same connection). It was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a large number of concurrent “INSERT”s or “UPDATE”s.

Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being both efficient and secure. It features client-side and server-side cursors, asynchronous communication and notifications, “COPY TO/COPY FROM” support. Many Python types are supported out-of-the-box and adapted to matching PostgreSQL data types; adaptation can be extended and customized thanks to a flexible objects adaptation system.

Psycopg 2 is both Unicode and Python 3 friendly.

Documentation

Documentation is included in the doc directory and is available online.

For any other resource (source code repository, bug tracker, mailing list) please check the project homepage.

Installation

Building Psycopg requires a few prerequisites (a C compiler, some development packages): please check the install and the faq documents in the doc dir or online for the details.

If prerequisites are met, you can install psycopg like any other Python package, using pip to download it from PyPI:

$ pip install psycopg2-yugabytedb

or using setup.py if you have downloaded the source package locally:

$ python setup.py build
$ sudo python setup.py install

Note - The YugabyteDB Psycopg2 requires Postgresql version 11 or above (preferrably 14)

Linux/OSX:

Linux and OSX build status

Windows:

Windows build status

YugabyteDB Psycopg2 Features

Yugabyte Psycopg2 driver is a distributed python driver for YSQL built on the PostgreSQL psycopg2 driver. Although the upstream PostgreSQL psycopg2 driver works with YugabyteDB, the Yugabyte driver enhances YugabyteDB by eliminating the need for external load balancers.

  • It is cluster-aware, which eliminates the need for an external load balancer.

  • It is topology-aware, which is essential for geographically-distributed applications. The driver uses servers that are part of a set of geo-locations specified by topology keys.

Load balancing

The Yugabyte Psycopg2 driver has the following load balancing features:

  • Uniform load balancing

In this mode, the driver makes the best effort to uniformly distribute the connections to each YugabyteDB server. For example, if a client application creates 100 connections to a YugabyteDB cluster consisting of 10 servers, then the driver creates 10 connections to each server. If the number of connections are not exactly divisible by the number of servers, then a few may have 1 less or 1 more connection than the others. This is the client view of the load, so the servers may not be well balanced if other client applications are not using the Yugabyte JDBC driver.

  • Topology-aware load balancing

Because YugabyteDB clusters can have servers in different regions and availability zones, the YugabyteDB JDBC driver is topology-aware, and can be configured to create connections only on servers that are in specific regions and zones. This is useful for client applications that need to connect to the geographically nearest regions and availability zone for lower latency; the driver tries to uniformly load only those servers that belong to the specified regions and zone. The Yugabyte Psycopg2 driver can be configured with pooling as well.

Usage

Load balancing connection properties:

The following connection properties need to be added to enable load balancing:

  • load_balance - enable cluster-aware load balancing by setting this property to true or any; disabled by default. This section explains the different values for load_balance parameter.

  • topology_keys - provide comma-separated geo-location values to enable topology-aware load balancing. Geo-locations can be provided as cloud.region.zone.

  • yb_servers_refresh_interval - The list of servers, to balance the connection load on, is refreshed periodically every 5 minutes by default. This time can be regulated by this property.

Pass new connection properties for load balancing in the connection URL or in the dictionary. To enable uniform load balancing across all servers, you set the load-balance property to True in the URL, as per the following example.

Connection String:

conn = psycopg2.connect("dbname=database_name host=hostname port=port user=username  password=password load_balance=true")

Connection Dictionary:

conn = psycopg2.connect(user = 'username', password='xxx', host = 'hostname', port = 'port', dbname = 'database_name', load_balance='True')

To specify topology keys, you set the topology_keys property to comma separated values, as per the following example.

Connection String:

conn = psycopg2.connect("dbname=database_name host=hostname port=port user=username  password=password load_balance=any topology_keys=cloud1.region1.zone1,cloud2.region2.zone2")

Connection Dictionary:

conn = psycopg2.connect(user = 'username', password='xxx', host = 'hostname', port = 'port', dbname = 'database_name', load_balance='any', topology_keys='cloud1.region1.zone1,cloud2.region2.zone2')

Multiple topologies can also be passed to the Topology Keys property, and each of them can also be given a preference value, as per the following example.:

conn = psycopg2.connect("host=127.0.0.1 port=5433 user=yugabyte dbname=yugabyte load_balance=True topology_keys=cloud1.region1.zone1:1,cloud2.region2.zone2:2")

The preference value (appended after :) is optional. So it is compatible with previous syntax of specifying cloud placements.

Preference value :1 means primary placement zone(s), value :2 means first fallback, value :3 means second fallback and so on.

Other Connection Parameters

  • fallback_to_topology_keys_only - Applicable only for TopologyAware Load Balancing. When set to true, the smart driver does not attempt to connect to servers outside of primary and fallback placements specified via property. The default behaviour is to fallback to any available server in the entire cluster.(default value: false)

  • failed_host_ttl_seconds - The driver marks a server as failed with a timestamp, when it cannot connect to it. Later, whenever it refreshes the server list via yb_servers(), if it sees the failed server in the response, it marks the server as UP only if failed_host_ttl_seconds time has elapsed. (The yb_servers() function does not remove a failed server immediately from its result and retains it for a while.)(default value: 5 seconds)

Read Replica Cluster

psycopg2 smart driver also enables load balancing across nodes in primary clusters which have associated Read Replica cluster.

The connection property load_balance allows five values using which users can distribute connections among different combination of nodes as per their requirements:

  • only-rr - Create connections only on Read Replica nodes

  • only-primary - Create connections only on primary cluster nodes

  • prefer-rr - Create connections on Read Replica nodes. If none available, on any node in the cluster including primary cluster nodes

  • prefer-primary - Create connections on primary cluster nodes. If none available, on any node in the cluster including Read Replica nodes

  • any or true - Equivalent to value true. Create connections on any node in the primary or Read Replica cluster

default value is false

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

psycopg2_yugabytedb-2.9.3.5.tar.gz (399.0 kB view details)

Uploaded Source

Built Distributions

psycopg2_yugabytedb-2.9.3.5-cp312-cp312-macosx_13_0_arm64.whl (155.2 kB view details)

Uploaded CPython 3.12 macOS 13.0+ ARM64

psycopg2_yugabytedb-2.9.3.5-cp311-cp311-macosx_13_0_arm64.whl (152.7 kB view details)

Uploaded CPython 3.11 macOS 13.0+ ARM64

File details

Details for the file psycopg2_yugabytedb-2.9.3.5.tar.gz.

File metadata

  • Download URL: psycopg2_yugabytedb-2.9.3.5.tar.gz
  • Upload date:
  • Size: 399.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for psycopg2_yugabytedb-2.9.3.5.tar.gz
Algorithm Hash digest
SHA256 af41d31a910435377483b0034eba6e0da1f2f8b2b5171e78e9439f8fdd66fdbc
MD5 b6d5f81635cc881437f7ec7f65a963e4
BLAKE2b-256 7826c5cc4810c5100e7bd95d6c0799c0a92d9898554d0ca5dfa42c4cef1773fc

See more details on using hashes here.

File details

Details for the file psycopg2_yugabytedb-2.9.3.5-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_yugabytedb-2.9.3.5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f2a590fb536e68af8aee9f5f79f2b342dbe0ed4f8155982b0b666b824db48282
MD5 732f1c99c72058f8fe548a312ed1201b
BLAKE2b-256 d8653d68a705bdd2b3b25f4f5b8ca015d8635e5b4e0d8539b55d57d24e355910

See more details on using hashes here.

File details

Details for the file psycopg2_yugabytedb-2.9.3.5-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_yugabytedb-2.9.3.5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dcfb49c2d94608b365bcd917f8b072f8ee3ca1407e90dc2fee440920ffa672e2
MD5 267349948ba359b7c8c1601f627df238
BLAKE2b-256 d6f27d8d5c3f792c45c37bf2d67e410d43e34f4794a69b284fdf720c2de1be9a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page