Learn how to run PostgreSQL natively on Kubernetes based platforms so you can manage your own database-as-a-service.
For most major upgrades using a utility such as pg_upgrade or a replication tool such as pglogical will be the best solution. However if these options are not available, pg_dumpall can be used to safely perform a major upgrade of your PostgreSQL database.
Many location aware applications need to find things are people that are close to a specific location. The KNN-GiST functionality of PostgreSQL helps developers to create high performance queries to quickly find neighbors, with applications in mapping and proximity searches.
Covering indexes in PostgreSQL are an incredibly helpful feature that can help improve the performance of your application when used correctly. This article demonstrates how an application that collects time-series and geospatial data is able to use covering indexes to boost performance.
This CIS PostgreSQL Benchmark, co-authored by Crunchy Data and the Center for Internet Security, is a detailed guide with best practices and recommendations for securing your PostgreSQL clusters. This guide teaches you how to use the CIS PostgreSQL Benchmark to secure your database.
The Crunchy PostgreSQL Operator helps to automate many typical database administration tasks at scale and leverages Kubernetes Deployments to flexibility in building environments that feature high-availability, configurable resource management, and seamless upgrades.
A practical guide to detecting if your PostgreSQL replicas are out-of-sync and how to restore them efficiently without a base backup.
Here is a case study for how to efficiently upgrade major versions of PostgreSQL with almost zero-downtime using pglogical
The Crunchy PostgreSQL for Kubernetes Operator makes it easy to maintain a high-availability database cluster by making failover from a primary to a replica database as simple as one command.
COPY is also incredibly helpful for ingesting data such as JSON or CSV into a PostgreSQL table, especially if there is a lot of it. Learn how to use COPY to optimize your data loading performance in PostgreSQL.
This article provides an easy recipe for creating a PostgreSQL primary-replica cluster using Docker Swarm.
This guide shows how to use PostgreSQL schemas with multiple users in your database. It also demonstrates the issues highlighted by CVE-2018-1058 and how to audit and protect your PostgreSQL databases.
PostgreSQL range types work very well in the presence of data. However, in the case of the absence of data, it may take a little extra work to get the desired results. We explore a simple scheduling application and see how PostgreSQL has the tools to efficiently search availability data.
Row Level Security (RLS) allows an administrator to define if a user should be able to view or manipulate specific rows of data in a PostgreSQL table.
Easy setup and installation for PostgreSQL 10 and pgAdmin 4 with Docker and open source containers packaged by Crunchy Data.
This blog post discusses the pgstattuple contrib module with regards to getting an accurate assessment of bloat in your PostgreSQL environment.
Introduction to Spatial Analytics with PostgreSQL, PostGIS, PL/R and R Programming Language. Example use of R Analytic functions in PostgreSQL and PostGIS.
Introduction to Spatial Analytics with PostgreSQL, PostGIS, PL/R and R Programming Language. Demonstration of preprocessing of Geospatial data using PostGIS.
Introduction to Spatial Analytics with PostgreSQL, PostGIS, PL/R and R. First in series of posts introduces PL/R and provides background for sample analysis.