• 15 min read

    Preprocessing Data for Spatial Analysis with PostGIS and PL/R

    Joe Conway

    This is the second in a series of posts intended to introduce PostgreSQL users to PL/R , a loadable procedural language that enables a user to write user-defined SQL functions in the R programming language .  This post builds on the example introduced in the initial post by demonstrating the steps associated with preprocessing the Normalized Difference Vegetation Index ( NDVI ) satellite raster data in preparation for spatial analytics. The first post in this series provided users with an...

    Read More
  • 10 min read

    Spatial Analytics with PostGIS, PL/R and R

    Joe Conway

    This is the first in a series of posts intended to introduce PostgreSQL users to PL/R, a loadable procedural language that enables a user to write user-defined SQL functions in the R programming language . When further combined with PostGIS, the geospatial extender for PostgreSQL, users can perform powerful spatial analytics within the PostgreSQL database. This initial post introduces PL/R and R, provides set up instructions for following the Spatial Analytics example to be used in this series...

    Read More
  • 5 min read

    PostgreSQL Operator for Kubernetes

    Jeff McCormick

    Crunchy Data is pleased to announce an initial implementation of a PostgreSQL Operator for Kubernetes to build on our work with PostgreSQL Containers. This initial implementation provides a user with the ability to perform certain PostgreSQL functions including creating PostgreSQL clusters, performing database backup and restores and viewing persistent volume claims. Last November the team at CoreOS introduced the concept of an “application-specific controller” for Kubernetes called software Op...

    Read More
  • 3 min read

    Announcing the PostgreSQL STIG

    Joe Conway

    Crunchy Data recently announced the publication of the PostgreSQL Security Technical Implementation Guide ( STIG ) by the United States Defense Information Systems Agency ( DISA ), making PostgreSQL the first open source database to provide a published STIG. While the STIG was authored for the benefit of the U.S. Government, the DISA PostgreSQL STIG offers security-conscious enterprises a comprehensive guide for the configuration and operation of open source PostgreSQL. Enterprises can ref...

    Read More
  • 6 min read

    Deploying PostgreSQL Clusters using Kubernetes StatefulSets

    Jeff McCormick

    This blog provides guidance on how to build a PostgreSQL cluster using the new Kubernetes feature - StatefulSet . Using this StatefulSet capability provides a very simple, Kubernetes native, mechanism to make clustering decisions when deploying a PostgreSQL cluster. The Crunchy PostgreSQL Container Suite is a set of containers that can be used to deploy, monitor, and administer the open source PostgreSQL database. More details can be found in the crunchy-containers GitHUB repository here In...

    Read More
  • Easy PostgreSQL Cluster Recipe Using Docker 1.12 and Swarm

    Jeff McCormick

    PLEASE READ THE UPDATED VERSION: AN EASY RECIPE FOR CREATING A POSTGRESQL CLUSTER WITH DOCKER SWARM The below content has been deprecated in favor of An Easy Recipe for Creating a PostgreSQL Cluster with Docker Swarm . In this blog I’ll show you how to deploy a PostgreSQL cluster using the latest Docker 1.12 technology. Updates to Docker in their 1.12 release greatly simplify deploying a PostgreSQL cluster. IP addresses and hostnames used in this blog are just examples and not mandated. To sta...

    Read More
  • 2 min read

    A Committer's Preview of PGConf.EU 2016 - Part 3

    Stephen Frost

    Today, I am wrapping up my preview of next week's PGConf.EU conference . I'm really excited about all of the excellent topics and speakers that we get to choose from! Once again, here's the full Schedule . On Friday morning, I have to recommend Arthur Zakirov and Oleg Bartunov ’s talk on Better Full Text Search in PostgreSQL , even if you don’t use any Full Text Search today, they will be discussing the new RUM indexing capability which is currently being worked on.  If that isn’t your thi...

    Read More
  • 3 min read

    A Committer's Preview of PGConf.EU 2016 - Part 2

    Stephen Frost

    Today, I will continue with my preview of the exciting talks at the upcoming PGConf.EU conference. In Part 1 , I discussed the talks that will happen on Wednesday. Today, I want to dive into the Thursday sessions. Starting in early on Thursday morning,if you haven’t tracked all the fantastic progress we’ve made with PostgreSQL 9.6 then definitely go to Magnus Hagander ’s talk on What's New in PostgreSQL 9.6 .  If all of that is old news to you and you’re looking at PG10 with the other devel...

    Read More
  • 3 min read

    A Committer's Preview of PGConf.EU 2016 - Part 1

    Stephen Frost

    Only one week left til PGConf.EU in Tallinn, Estonia! Next week will be PGConf.EU’s 8th conference, having traveled to many different parts of Europe, and lately moving on a North-East trajectory, two years ago in Madrid, last year in Vienna, is now in Tallinn, Estonia with another fantastic line-up of talks . Here are the talks which I am most interested in this year.  Warning for the unwary, I’m a PostgreSQL Committer, so I tend to be quite developer heavy when it comes to my talk selections....

    Read More
  • pgAudit: Auditing Database Operations Part 2

    Jason O'Donnell

    In the last blog post , pgAudit was configured to audit entire classes of statements (session auditing). Session auditing works great, but it can generate a lot of logs and not every administrator needs all that information. In this blog post pgAudit will be configured to use an auditing role to watch only specific objects. This guide assumes pgAudit has already been installed on the target DB server. For more instructions on installing pgAudit, see the official documentation here . pgAudit au...

    Read More