Skip to content
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

[BUG] Use snapshots from distribution/maven for dependencies #274

Closed
Tracked by #1375 ...
dblock opened this issue Dec 18, 2021 · 11 comments
Closed
Tracked by #1375 ...

[BUG] Use snapshots from distribution/maven for dependencies #274

dblock opened this issue Dec 18, 2021 · 11 comments
Labels
bug Something isn't working

Comments

@dblock
Copy link
Member

dblock commented Dec 18, 2021

Describe the bug

There are -SNAPSHOT builds checked into https://github.com/opensearch-project/cross-cluster-replication/tree/main/src/test/resources/security/plugin. This is error prone at the very least, use a distribution build.

@saikaranam-amazon
Copy link
Member

saikaranam-amazon commented Feb 5, 2022

There are -SNAPSHOT builds checked into https://github.com/opensearch-project/cross-cluster-replication/tree/main/src/test/resources/security/plugin. This is error prone at the very least, use a distribution build.

we have addressed this in this PR: #296 but keeping this issue open as original intent is to use distribution builds from maven to use in CI workflow.

@rursprung
Copy link
Contributor

rursprung commented Jun 2, 2022

why was this closed? it's not yet using opensearch-security from maven:

- name: Checkout security
uses: actions/checkout@v2
with:
repository: 'opensearch-project/security'
path: security
ref: 'main'
- name: Build security
working-directory: ./security
run: |
./gradlew clean build -Dbuild.snapshot=false -x test
cp build/distributions/opensearch-security-*.zip ../src/test/resources/security/plugin/opensearch-security.zip

=> this ticket should IMHO be re-opened as it isn't resolved.
note that this cannot be done before opensearch-project/security#1801 is implemented

@ankitkala ankitkala reopened this Jun 3, 2022
@prudhvigodithi
Copy link
Contributor

Hey @ankitkala @rursprung just to connect the dots once the issue is resolved opensearch-project/security#1801, the required zip files can be fetched from maven, if then can this issue be resolved?
@dblock @bbarani
Example (once the zips are published to maven) as
mvn org.apache.maven.plugins:maven-dependency-plugin:2.1:get -DrepoUrl=https://aws.oss.sonatype.org/content/repositories/snapshots/ -Dartifact=org.opensearch.plugin:opensearch-security:1.3.0.0-SNAPSHOT:zip

@rursprung
Copy link
Contributor

you shouldn't have to manually run mvn in the GitHub Action - instead you should probably have the dependency in your build.gradle so that it also works in any other place where you build the project. otherwise you wouldn't really have to use maven but could just download the ZIP from any download location.

@prudhvigodithi
Copy link
Contributor

you shouldn't have to manually run mvn in the GitHub Action - instead you should probably have the dependency in your build.gradle so that it also works in any other place where you build the project. otherwise you wouldn't really have to use maven but could just download the ZIP from any download location.

Hey @rursprung, I have just added as an example, but yes its should be fetched as dependency in gradle.

@prudhvigodithi
Copy link
Contributor

prudhvigodithi commented Jul 8, 2022

@rursprung
Copy link
Contributor

@prudhvigodithi: see my comment here: opensearch-project/index-management#403 (comment)

i think what's still missing to resolve this is the publishing of the ZIP files to the snapshot maven repo during snapshot builds. unless i was looking in the wrong place...? but then the solution for index-management is IMHO still wrong.

@prudhvigodithi
Copy link
Contributor

prudhvigodithi commented Jul 10, 2022

Hey @rursprung, official release zips are part of maven repo, snapshots can be fetched from nexus maven repo
Example for job-scheduler snapshots

Quick test:

mvn org.apache.maven.plugins:maven-dependency-plugin:2.1:get -DrepoUrl=https://aws.oss.sonatype.org/content/repositories/snapshots/ -Dartifact=org.opensearch.plugin:opensearch-job-scheduler:2.1.0.0-SNAPSHOT:zip

Picked up JAVA_TOOL_OPTIONS: -Dlog4j2.formatMsgNoLookups=true
[INFO] Scanning for projects...
[INFO] 
[INFO] ------------------< org.apache.maven:standalone-pom >-------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.1:get (default-cli) @ standalone-pom ---
Downloading from temp: https://aws.oss.sonatype.org/content/repositories/snapshots/org/opensearch/plugin/opensearch-job-scheduler/2.1.0.0-SNAPSHOT/maven-metadata.xml
Downloaded from temp: https://aws.oss.sonatype.org/content/repositories/snapshots/org/opensearch/plugin/opensearch-job-scheduler/2.1.0.0-SNAPSHOT/maven-metadata.xml (804 B at 1.6 kB/s)
Downloading from temp: https://aws.oss.sonatype.org/content/repositories/snapshots/org/opensearch/plugin/opensearch-job-scheduler/2.1.0.0-SNAPSHOT/opensearch-job-scheduler-2.1.0.0-20220630.215242-39.zip
Downloaded from temp: https://aws.oss.sonatype.org/content/repositories/snapshots/org/opensearch/plugin/opensearch-job-scheduler/2.1.0.0-SNAPSHOT/opensearch-job-scheduler-2.1.0.0-20220630.215242-39.zip (210 kB at 344 kB/s)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  1.557 s
[INFO] Finished at: 2022-07-10T08:30:10-04:00
[INFO] ------------------------------------------------------------------------

@bbarani
Copy link
Member

bbarani commented Jul 11, 2022

@saikaranam-amazon @ankitkala whats the next step here?

@ankitkala
Copy link
Member

ankitkala commented Jul 12, 2022

We'll take this up in upcoming 1-2 weeks. @bbarani Are there any timelines you're looking at?
cc: @manishdev-amzn

@ankitkala
Copy link
Member

Closing the issue now.

ankitkala pushed a commit that referenced this issue Sep 26, 2022
there's no need to manually construct a URL and try to fetch the
artefact from there. the plugin is published on maven and we can
directly use the gradle/maven dependency to fetch it.

in order to more easily identify it, a new configuration type has been
added: `opensearchPlugin`.

for reference see the discussions on the following issues/PRs:
- #274
- #455

Signed-off-by: Ralph Ursprung <Ralph.Ursprung@avaloq.com>

Signed-off-by: Ralph Ursprung <Ralph.Ursprung@avaloq.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

6 participants