Get PGAdapter
This page explains how to get the PGAdapter binary. PGAdapter is used with PostgreSQL-dialect databases.
To run the PGAdapter standalone in the JVM, download the latest
jarfile and a newlibdirectory that contains the required dependencies.wgethttps://storage.googleapis.com/pgadapter-jar-releases/pgadapter.tar.gz\ && tar-xzvfpgadapter.tar.gzTo run PGAdapter in a Docker container, get the latest version by executing the following command:
dockerpullgcr.io/cloud-spanner-pg-adapter/pgadapterGet a previous version by appending the version as a tag.
dockerpullgcr.io/cloud-spanner-pg-adapter/pgadapter:v<version-number>To use PGAdapter in a process:
Add
google-cloud-spanner-pgadapteras a dependency to your project by adding the following code to yourpom.xmlfile:<dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-spanner-pgadapter</artifactId> <version>0.51.1</version> </dependency>
What's next
- Learn how to Start PGAdapter.