With the Spring Boot application written, you need to package it into a container. In Chapter 10, I will cover more options for automating this process; however, for now, I will introduce Jib, a Google open source project that allows you to build containers for a Java application without a Dockerfile.
Jib uses a plugin with either Maven or Gradle to build the container without needing Docker installed. Ultimately, a container is just a layered archive file, and all Jib does is insert a layer containing the application code and dependencies. In this case, Jib is enabled by adding the following to the plugins section of the pom.xml file: <plugin>
<groupId>
com.google.cloud.tools
</groupId>
<artifactId>
jib-maven-plugin
</artifactId>
<version>
3.3.1
</version>
</plugin>
Here, you have specified the instance name, the database version, the tier, the region, the availability type, and the disk size.
The tier is the machine type and the disk size is the amount of storage. Setting the tier to db-f1-micro defines the amount of CPU and memory of the machine that will be used to host the instance. This is a very small machine intended only for development.
You can also set the disk size to 10 (GB), the smallest allowed. This keeps costs to around 1–2 cents per hour. You can increase these values later if needed.
Using small machines has implications for the number of concurrent connections that can be made to the database. For example, this minimum configuration supports a maximum of 25 connections, which is less than the default of 100 normal for PostgreSQL. Higher tiers intended for nondevelopment use provide at least 100 connections by default.
The database version is the version of PostgreSQL that will be used. The region is the region where the database is deployed. Make sure this is the same region as the Cloud Run service to get the best performance.
The region denotes the geographical location in which the database is deployed. It’s crucial to ensure that your database and Cloud Run service are in the same region to optimize performance due to reduced network latency.
Regarding availability, opt for a regional database, which provides replication across multiple zones within the chosen region. This enhances the database’s availability, making it resistant to zone-specific failures. By default, regional databases are selected because they typically suit most use cases. They come with a 99.95% service-level agreement (SLA), which translates to expected downtime of fewer than five hours per year.