File tree 2 files changed +41
-1
lines changed
2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,23 @@ Setup your AWS credentials to meet your needs. Then run a command similar to the
59
59
./gradlew :performance-test:compileGatlingJava
60
60
```
61
61
62
+ ### Deploying
63
+
64
+ You can also create an uber-jar that has everything needed to run the Gatling performance tests so that you can
65
+ deploy them easily.
66
+
67
+ ``` shell
68
+ ./gradlew :performance-test:assemble
69
+ ```
70
+
71
+ This will create an uber jar in ` performance-test/build/libs ` with the name ` opensearch-data-prepper-performance-test-${VERSION}.jar `
72
+
73
+ You can run this using a command similar to the following.
74
+
75
+ ``` shell
76
+ java -jar performance-test/build/libs/opensearch-data-prepper-performance-test-2.11.0-SNAPSHOT.jar -s org.opensearch.dataprepper.test.performance.StaticRequestSimulation
77
+ ```
78
+
62
79
# Gatling Documentation
63
80
[ Gatling Quickstart] ( https://gatling.io/docs/gatling/tutorials/quickstart/ )
64
81
[ Gatling Advanced Simulations] ( https://gatling.io/docs/gatling/tutorials/advanced/ )
Original file line number Diff line number Diff line change 6
6
plugins {
7
7
id ' java'
8
8
id ' io.gatling.gradle' version ' 3.10.4'
9
+ id ' com.gradleup.shadow' version ' 8.3.6'
9
10
}
10
11
11
12
configurations. all {
@@ -47,6 +48,28 @@ dependencies {
47
48
}
48
49
}
49
50
51
+ jar {
52
+ from(sourceSets. gatling. output)
53
+ }
54
+
55
+ tasks. shadowJar {
56
+ archiveBaseName = " ${ project.rootProject.name} -${ project.name} "
57
+ archiveClassifier = ' '
58
+ archiveVersion = " ${ project.rootProject.version} "
59
+ configurations = [project. configurations. gatlingRuntimeClasspath]
60
+ manifest {
61
+ attributes ' Main-Class' : ' io.gatling.app.Gatling'
62
+ }
63
+ }
64
+
65
+ tasks. named(' shadowJar' ). configure {
66
+ dependsOn ' jar'
67
+ }
68
+
69
+ tasks. named(' assemble' ). configure {
70
+ dependsOn(' shadowJar' )
71
+ }
72
+
50
73
test {
51
74
useJUnitPlatform()
52
- }
75
+ }
You can’t perform that action at this time.
0 commit comments