-
Notifications
You must be signed in to change notification settings - Fork 28.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-50448][SQL][TESTS] Extract postgres image common conf as Postg…
…resDatabaseOnDocker ### What changes were proposed in this pull request? The pr aims to extract `postgres` image `common` conf as `PostgresDatabaseOnDocker`. ### Why are the changes needed? Reduce the cost of the next `postgres` image upgrade. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass existed UT & GA. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #49004 from panbingkun/SPARK-50448. Authored-by: panbingkun <[email protected]> Signed-off-by: panbingkun <[email protected]>
- Loading branch information
1 parent
2c2c0e0
commit aaf8590
Showing
7 changed files
with
45 additions
and
62 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
...integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresDatabaseOnDocker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* 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.spark.sql.jdbc | ||
|
||
import org.apache.spark.internal.Logging | ||
|
||
class PostgresDatabaseOnDocker extends DatabaseOnDocker with Logging { | ||
lazy override val imageName: String = | ||
sys.env.getOrElse("POSTGRES_DOCKER_IMAGE_NAME", "postgres:17.2-alpine") | ||
private val postgres_user = "postgres" | ||
private val postgres_password = "rootpass" | ||
override val env: Map[String, String] = Map( | ||
"POSTGRES_PASSWORD" -> postgres_password | ||
) | ||
override val usesIpc = false | ||
override val jdbcPort: Int = 5432 | ||
|
||
override def getJdbcUrl(ip: String, port: Int): String = { | ||
s"jdbc:postgresql://$ip:$port/postgres?user=$postgres_user&password=$postgres_password" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters