-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add hoptimator-jdbc-driver and hoptimator-api release artifacts * Fix non-determinism in integration tests * Move Source, Sink, Job, Pipeline to API * Upgrade gradle
- Loading branch information
1 parent
1b0a57f
commit 08729e9
Showing
30 changed files
with
266 additions
and
140 deletions.
There are no files selected for viewing
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
Binary file not shown.
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,53 @@ | ||
plugins { | ||
id 'java' | ||
id 'maven-publish' | ||
} | ||
|
||
dependencies { | ||
// plz keep it this way | ||
} | ||
|
||
publishing { | ||
repositories { | ||
maven { | ||
name 'GitHubPackages' | ||
url = 'https://maven.pkg.github.com/linkedin/Hoptimator' | ||
credentials { | ||
username = System.getenv('GITHUB_ACTOR') | ||
password = System.getenv('GITHUB_TOKEN') | ||
} | ||
} | ||
maven { | ||
name 'LinkedInJFrog' | ||
url 'https://linkedin.jfrog.io/artifactory/hoptimator' | ||
credentials { | ||
username = System.getenv('JFROG_USERNAME') | ||
password = System.getenv('JFROG_API_KEY') | ||
} | ||
} | ||
} | ||
publications { | ||
maven(MavenPublication) { | ||
groupId = 'com.linkedin.hoptimator' | ||
artifactId = 'hoptimator-api' | ||
version = System.getenv('VERSION') | ||
from components.java | ||
pom { | ||
name = 'hoptimator-api' | ||
description = 'API for extending Hoptimator' | ||
url = 'https://github.com/linkedin/Hoptimator' | ||
licenses { | ||
license { | ||
name = 'BSD 2-Clause' | ||
url = 'https://raw.githubusercontent.com/linkedin/Hoptimator/main/LICENSE' | ||
} | ||
} | ||
scm { | ||
connection = 'scm:git:git://github.com:linkedin/Hoptimator.git' | ||
developerConnection = 'scm:git:ssh://github.com:linkedin/Hoptimator.git' | ||
url = 'https://github.com/linkedin/Hoptimator' | ||
} | ||
} | ||
} | ||
} | ||
} |
4 changes: 1 addition & 3 deletions
4
...ava/com/linkedin/hoptimator/util/Job.java → ...ain/java/com/linkedin/hoptimator/Job.java
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
6 changes: 1 addition & 5 deletions
6
...din/hoptimator/util/MaterializedView.java → ...linkedin/hoptimator/MaterializedView.java
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
4 changes: 1 addition & 3 deletions
4
...din/hoptimator/util/planner/Pipeline.java → ...ava/com/linkedin/hoptimator/Pipeline.java
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
17 changes: 17 additions & 0 deletions
17
hoptimator-api/src/main/java/com/linkedin/hoptimator/Sink.java
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,17 @@ | ||
package com.linkedin.hoptimator; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
|
||
public class Sink extends Source { | ||
|
||
public Sink(String database, List<String> path, Map<String, String> options) { | ||
super(database, path, options); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "Sink[" + pathString() + "]"; | ||
} | ||
} |
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
7 changes: 7 additions & 0 deletions
7
hoptimator-api/src/main/java/com/linkedin/hoptimator/SqlDialect.java
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,7 @@ | ||
package com.linkedin.hoptimator; | ||
|
||
|
||
public enum SqlDialect { | ||
ANSI, | ||
FLINK | ||
} |
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
Oops, something went wrong.