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

Add sample Hello World Scheduled Job #692

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ buildscript {
}

plugins {
id 'java'
id 'java-library'
id "com.diffplug.spotless" version "6.19.0" apply false
id 'jacoco'
Expand Down Expand Up @@ -85,7 +86,6 @@ allprojects {
}
}


group 'org.opensearch.sdk'

publishing {
Expand Down Expand Up @@ -129,6 +129,15 @@ repositories {
maven { url "https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"}
}

subprojects {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"}
}
}

dependencies {

def opensearchVersion = "${opensearch_version}"
Expand All @@ -149,6 +158,7 @@ dependencies {
def slf4jVersion = "1.7.36"

api("org.opensearch:opensearch:${opensearchVersion}")

implementation("org.apache.logging.log4j:log4j-api:${log4jVersion}")
implementation("org.apache.logging.log4j:log4j-core:${log4jVersion}")
implementation("org.apache.logging.log4j:log4j-jul:${log4jVersion}")
Expand All @@ -172,17 +182,17 @@ dependencies {
implementation("com.fasterxml.jackson.datatype:jackson-datatype-guava:${jacksonDatabindVersion}")
implementation("com.fasterxml.jackson.core:jackson-annotations:${jacksonDatabindVersion}")

implementation("com.google.guava:guava:${guavaVersion}")
api("com.google.guava:guava:${guavaVersion}")
implementation("javax.inject:javax.inject:${javaxVersion}")
implementation("com.google.guava:failureaccess:${guavaFailureAccessVersion}")
implementation("aopalliance:aopalliance:${aopallianceVersion}")

constraints {
implementation("com.google.guava:guava:${guavaVersion}") {
api("com.google.guava:guava:${guavaVersion}") {
because 'versions below 30.0 have active CVE'
}
}
implementation("com.google.inject:guice:${guiceVersion}")
api("com.google.inject:guice:${guiceVersion}")
testImplementation("org.junit.jupiter:junit-jupiter-api:${junit5Version}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junit5Version}")
testImplementation("org.opensearch.test:framework:${opensearchVersion}")
Expand All @@ -204,13 +214,6 @@ dependencies {
}
}

// this task runs the helloworld sample extension
task helloWorld(type: JavaExec) {
group = 'Execution'
description = 'Run HelloWorld Extension.'
mainClass = 'org.opensearch.sdk.sample.helloworld.HelloWorldExtension'
classpath = sourceSets.main.runtimeClasspath
}

task getVersion() {
doLast {
Expand Down
29 changes: 29 additions & 0 deletions sample/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
### IntelliJ IDEA ###
out/
!**/src/main/**/out/
!**/src/test/**/out/

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
99 changes: 99 additions & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
import org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestFramework

/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*
* Modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*/

plugins {
id 'java'
id "com.diffplug.spotless" version "6.19.0" apply false
id 'jacoco'
id "com.form.diff-coverage" version "0.9.5"
// for javadocs and checks spotless doesn't do
id 'checkstyle'
}

ext {
projectSubstitutions = [:]
licenseFile = rootProject.file('LICENSE.txt')
noticeFile = rootProject.file('NOTICE.txt')
}


apply plugin: 'application'
apply plugin: 'maven-publish'

// Temporary to keep "gradle run" working
// TODO: change this to an extension designed for testing instead of duplicating a sample
// https://github.com/opensearch-project/opensearch-sdk-java/issues/175
mainClassName = 'org.opensearch.sdk.sample.helloworld.HelloWorldExtension'


group 'org.opensearch.sdk.sample'
version '2.0.0-SNAPSHOT'

java {
withSourcesJar()
withJavadocJar()
}

publishing {
publications {
group = "${group}"
version = "${version}"
mavenJava(MavenPublication) {
from components.java
}
sourceCompatibility = 11
targetCompatibility = 11
}

repositories {
maven {
name = "Snapshots" // optional target repository name
url = "https://aws.oss.sonatype.org/content/repositories/snapshots"
credentials {
username "$System.env.SONATYPE_USERNAME"
password "$System.env.SONATYPE_PASSWORD"
}
}
}
}

test {
getTestFrameworkProperty().convention(getProviderFactory().provider(() -> new JUnitPlatformTestFramework(it.getFilter(), false)))
jvmArgs '--enable-preview'
systemProperty 'tests.security.manager', 'false'
}

dependencies {
def opensearchVersion = "3.0.0-SNAPSHOT"
def jobSchedulerVersion = "3.0.0.0-SNAPSHOT"
def junit5Version = "5.9.3"
def junitPlatform = "1.9.3"

implementation project(':')
implementation("org.opensearch:opensearch-job-scheduler:${jobSchedulerVersion}")
implementation("org.opensearch:opensearch-job-scheduler-spi:${jobSchedulerVersion}")

testImplementation project(':').sourceSets.test.output
testImplementation("org.junit.jupiter:junit-jupiter-api:${junit5Version}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junit5Version}")
testImplementation("org.opensearch.test:framework:${opensearchVersion}")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:${junitPlatform}")
}

// this task runs the helloworld sample extension
task helloWorld(type: JavaExec) {
group = 'Execution'
description = 'Run HelloWorld Extension.'
mainClass = 'org.opensearch.sdk.sample.helloworld.HelloWorldExtension'
classpath = sourceSets.main.runtimeClasspath
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,29 @@

import java.io.IOException;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import com.google.common.collect.ImmutableList;
import org.opensearch.action.ActionRequest;
import org.opensearch.action.ActionResponse;
import org.opensearch.common.settings.Setting;
import org.opensearch.core.xcontent.NamedXContentRegistry;
import org.opensearch.sdk.BaseExtension;
import org.opensearch.sdk.Extension;
import org.opensearch.sdk.ExtensionSettings;
import org.opensearch.sdk.ExtensionsRunner;
import org.opensearch.sdk.SDKClient;
import org.opensearch.sdk.api.ActionExtension;
import org.opensearch.sdk.rest.ExtensionRestHandler;
import org.opensearch.sdk.sample.helloworld.rest.RestHelloAction;
import org.opensearch.sdk.sample.helloworld.rest.RestRemoteHelloAction;
import org.opensearch.sdk.sample.helloworld.schedule.GreetJob;
import org.opensearch.sdk.sample.helloworld.transport.HWJobParameterAction;
import org.opensearch.sdk.sample.helloworld.transport.HWJobParameterTransportAction;
import org.opensearch.sdk.sample.helloworld.transport.HWJobRunnerAction;
import org.opensearch.sdk.sample.helloworld.transport.HWJobRunnerTransportAction;
import org.opensearch.sdk.sample.helloworld.transport.SampleAction;
import org.opensearch.sdk.sample.helloworld.transport.SampleTransportAction;

Expand Down Expand Up @@ -61,7 +71,30 @@ public List<ExtensionRestHandler> getExtensionRestHandlers() {

@Override
public List<ActionHandler<? extends ActionRequest, ? extends ActionResponse>> getActions() {
return Arrays.asList(new ActionHandler<>(SampleAction.INSTANCE, SampleTransportAction.class));
return Arrays.asList(
new ActionHandler<>(SampleAction.INSTANCE, SampleTransportAction.class),
new ActionHandler<>(HWJobRunnerAction.INSTANCE, HWJobRunnerTransportAction.class),
new ActionHandler<>(HWJobParameterAction.INSTANCE, HWJobParameterTransportAction.class)
);
}

@Override
public List<NamedXContentRegistry.Entry> getNamedXContent() {
return ImmutableList.of(GreetJob.XCONTENT_REGISTRY);
}

@Deprecated
private SDKClient.SDKRestClient createRestClient(ExtensionsRunner runner) {
@SuppressWarnings("resource")
SDKClient.SDKRestClient client = runner.getSdkClient().initializeRestClient();
return client;
}

@Override
public Collection<Object> createComponents(ExtensionsRunner runner) {
SDKClient.SDKRestClient sdkRestClient = createRestClient(runner);

return Collections.singletonList(sdkRestClient);
}

/**
Expand Down
Loading