-
Notifications
You must be signed in to change notification settings - Fork 23
Pom refactor - Add Spark 3.5 connector #152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
stevelordbq
wants to merge
28
commits into
GoogleCloudDataproc:main
Choose a base branch
from
Bit-Quill:pom-refactor
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 19 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
4d6c8cb
Add libraries for Spark 3.5
stevelordbq aeb248a
Remove hard coding of jar names/paths
stevelordbq 1b73333
Remove Spark 3.5 Spanner Table Provider as causing multiple Table Pro…
stevelordbq cde85f2
Move Spark dependencies to Spark version specific modules. Remove dep…
stevelordbq ce92171
Make Spanner Table options case insensitive.
stevelordbq ada76f5
Refactored Maven project to change parent pom ready for Spark build r…
stevelordbq edc8bf5
Add spanner-spark-common to dependencies of Spark 3.2, 3.3 and 3.5
stevelordbq 99b14b7
Rationalize Spark 3.1
stevelordbq 9f03990
Rationalize Spark 3.1 - unit/integration tests pass
stevelordbq 135a83a
Spark 3.2 rationalize code duplication
stevelordbq a2fc9e4
Spark 3.3 rationalize code duplication
stevelordbq f61bd66
Spark 3.5 add Spark dependency
stevelordbq 5c0ec34
Spark 3.5 rationalization of code duplication
stevelordbq 8b3bf44
Add Spark 3.2, 3.3 specific tests
stevelordbq 780d367
Update maven-shade-plugin for 3.5
stevelordbq 0af1917
Update maven-shade-plugin for 3.1 & 3.5
stevelordbq ca7830b
Update maven-shade-plugin for 3.2 & 3.3
stevelordbq 6be6bea
Update README for Spark 3.5
stevelordbq 2ea346e
Add Spanner Table properties case insensitivity to each Spark version.
stevelordbq f0f84e4
PR review updates
stevelordbq 88e20c4
Merge branch 'main' into pom-refactor
stevelordbq 2026367
Merge from main to resolve merge conflicts
stevelordbq 5bc1d84
Move revision property back to top level pom.xml
stevelordbq f5b2e51
PR updates
stevelordbq 19fd72c
Clean up unused resources
stevelordbq 36a0c40
PR update to README-template.md
stevelordbq 7e5f033
Rename tests to end with IntegrationTest if they are integration tests
stevelordbq 28c371c
Subclass integration tests so they run in the correct *SpannerTablePr…
stevelordbq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,63 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <parent> | ||
| <groupId>com.google.cloud.spark.spanner</groupId> | ||
| <artifactId>spark-spanner-lib-parent</artifactId> | ||
| <version>${revision}</version> | ||
| <relativePath>../spark-spanner-lib-parent</relativePath> | ||
| </parent> | ||
|
|
||
| <artifactId>spanner-core</artifactId> | ||
| <name>Spanner core library</name> | ||
| <description>This module contains Spanner code and no Spark dependencies.</description> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>com.google.cloud</groupId> | ||
| <artifactId>google-cloud-spanner</artifactId> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>com.google.cloud</groupId> | ||
| <artifactId>google-cloud-dataproc</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>com.google.cloud</groupId> | ||
| <artifactId>google-cloud-storage</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>com.google.code.gson</groupId> | ||
| <artifactId>gson</artifactId> | ||
| <version>2.10.1</version> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-databind</artifactId> | ||
| </dependency> | ||
| </dependencies> | ||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-jar-plugin</artifactId> | ||
| <version>3.3.0</version> | ||
| <executions> | ||
| <execution> | ||
| <goals> | ||
| <goal>test-jar</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
|
|
||
| </project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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 hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions
1
spanner-core/src/test/resources/spark-spanner-connector.properties
This file contains hidden or 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 @@ | ||
| connector.version=test |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.