All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.beam.it.jdbc.PostgresResourceManager Maven / Gradle / Ivy

There is a newer version: 2.61.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.beam.it.jdbc;

import org.apache.beam.vendor.guava.v32_1_2_jre.com.google.common.annotations.VisibleForTesting;
import org.testcontainers.containers.PostgreSQLContainer;
import org.testcontainers.utility.DockerImageName;

/**
 * Default class for the Postgres implementation of {@link AbstractJDBCResourceManager} abstract
 * class.
 *
 * 

The class supports one database, and multiple tables per database object. A database is * * created when the container first spins up, if one is not given. * *

The class is thread-safe. */ public class PostgresResourceManager extends AbstractJDBCResourceManager> { private static final String DEFAULT_POSTGRES_CONTAINER_NAME = "postgres"; // A list of available PostgreSQL Docker image tags can be found at // https://hub.docker.com/_/postgres/tags?tab=tags private static final String DEFAULT_POSTGRES_CONTAINER_TAG = "15.1"; @VisibleForTesting PostgresResourceManager(PostgreSQLContainer container, Builder builder) { super(container, builder); } public static Builder builder(String testId) { return new Builder(testId); } @Override protected int getJDBCPort() { return PostgreSQLContainer.POSTGRESQL_PORT; } @Override public String getJDBCPrefix() { return "postgresql"; } @Override public synchronized String getDockerImageName() { return "postgresql"; } /** Builder for {@link PostgresResourceManager}. */ public static final class Builder extends AbstractJDBCResourceManager.Builder> { public Builder(String testId) { super(testId, DEFAULT_POSTGRES_CONTAINER_NAME, DEFAULT_POSTGRES_CONTAINER_TAG); } @Override public PostgresResourceManager build() { PostgreSQLContainer container = new PostgreSQLContainer<>( DockerImageName.parse(containerImageName).withTag(containerImageTag)); container.setCommand("postgres", "-c", "fsync=off", "-c", "max_connections=1000"); return new PostgresResourceManager(container, this); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy