Skip to content
This repository was archived by the owner on Apr 15, 2024. It is now read-only.
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
7 changes: 7 additions & 0 deletions main-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ dependencies {
implementation("info.picocli:picocli:4.6.3")
annotationProcessor("info.picocli:picocli-codegen:4.6.3")

// Hadoop AWS - for Spark S3a connector, in sdk image but needed for main-app:run
runtimeOnly("org.apache.hadoop:hadoop-aws:3.3.4")
testRuntimeOnly("org.apache.hadoop:hadoop-aws:3.3.4")
// Hadoop GCS - spark connector, in sdk image but needed for main-app:run
runtimeOnly("com.google.cloud.bigdataoss:gcs-connector:hadoop3-2.2.15")
testRuntimeOnly("com.google.cloud.bigdataoss:gcs-connector:hadoop3-2.2.15")

// test dependencies
testImplementation(platform("org.junit:junit-bom:5.8.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
Expand Down
2 changes: 1 addition & 1 deletion main-app/src/main/resources/spec/streaming-connections.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
value: true
- name: csv/header
value: true
- name: streamReadDir
- name: stream_read_dir
value: s3a://cortex-examples/data/data-streaming
- name: isTriggered
value: false
Expand Down