Skip to content
Snippets Groups Projects
Commit 8bdafe0d authored by Sören Henning's avatar Sören Henning
Browse files

Move properties to common beam projects

parent a0fad1ab
No related branches found
No related tags found
1 merge request!249Align package structure among all benchmark implementations
Pipeline #6753 failed
Showing
with 69 additions and 72 deletions
...@@ -6,5 +6,14 @@ dependencies { ...@@ -6,5 +6,14 @@ dependencies {
implementation project(':uc1-beam') implementation project(':uc1-beam')
} }
sourceSets {
main {
resources {
srcDirs += [
project(':uc1-beam').sourceSets.main.resources
]
}
}
}
mainClassName = "application.Uc1BeamSamza" mainClassName = "application.Uc1BeamSamza"
...@@ -2,9 +2,18 @@ plugins { ...@@ -2,9 +2,18 @@ plugins {
id 'theodolite.beam.flink' id 'theodolite.beam.flink'
} }
dependencies { dependencies {
implementation project(':uc2-beam') implementation project(':uc2-beam')
} }
sourceSets {
main {
resources {
srcDirs += [
project(':uc2-beam').sourceSets.main.resources
]
}
}
}
mainClassName = "application.Uc2BeamFlink" mainClassName = "application.Uc2BeamFlink"
...@@ -2,9 +2,18 @@ plugins { ...@@ -2,9 +2,18 @@ plugins {
id 'theodolite.beam.samza' id 'theodolite.beam.samza'
} }
dependencies { dependencies {
implementation project(':uc2-beam') implementation project(':uc2-beam')
} }
sourceSets {
main {
resources {
srcDirs += [
project(':uc2-beam').sourceSets.main.resources
]
}
}
}
mainClassName = "application.Uc2BeamSamza" mainClassName = "application.Uc2BeamSamza"
application.name=theodolite-uc2-application
application.version=0.0.1
kafka.bootstrap.servers=localhost:9092
kafka.input.topic=input
kafka.output.topic=output
kafka.window.duration.minutes=1
schema.registry.url=http://localhost:8081
num.threads=1
commit.interval.ms=1000
cache.max.bytes.buffering=-1
specific.avro.reader=True
enable.auto.commit.config=True
auto.offset.reset.config=earliest
\ No newline at end of file
...@@ -2,11 +2,18 @@ plugins { ...@@ -2,11 +2,18 @@ plugins {
id 'theodolite.beam.flink' id 'theodolite.beam.flink'
} }
dependencies { dependencies {
implementation project(':uc3-beam') implementation project(':uc3-beam')
} }
sourceSets {
main {
resources {
srcDirs += [
project(':uc3-beam').sourceSets.main.resources
]
}
}
}
// This is the path of the main class, stored within ./src/main/java/
mainClassName = 'application.Uc3BeamFlink' mainClassName = 'application.Uc3BeamFlink'
...@@ -2,9 +2,18 @@ plugins { ...@@ -2,9 +2,18 @@ plugins {
id 'theodolite.beam.samza' id 'theodolite.beam.samza'
} }
dependencies { dependencies {
implementation project(':uc3-beam') implementation project(':uc3-beam')
} }
mainClassName = "application.Uc3BeamSamza" sourceSets {
\ No newline at end of file main {
resources {
srcDirs += [
project(':uc3-beam').sourceSets.main.resources
]
}
}
}
mainClassName = "application.Uc3BeamSamza"
application.name=theodolite-uc3-application
application.version=0.0.1
kafka.bootstrap.servers=localhost:9092
kafka.input.topic=input
kafka.output.topic=output
kafka.window.duration.minutes=1
schema.registry.url=http://localhost:8081
aggregation.duration.days=30
aggregation.advance.days=1
trigger.interval=15
num.threads=1
commit.interval.ms=1000
cache.max.bytes.buffering=-1
specific.avro.reader=True
enable.auto.commit.config=True
auto.offset.reset.config=earliest
\ No newline at end of file
...@@ -2,9 +2,18 @@ plugins { ...@@ -2,9 +2,18 @@ plugins {
id 'theodolite.beam.flink' id 'theodolite.beam.flink'
} }
dependencies { dependencies {
implementation project(':uc4-beam') implementation project(':uc4-beam')
} }
mainClassName = 'application.Uc4BeamFlink' sourceSets {
\ No newline at end of file main {
resources {
srcDirs += [
project(':uc4-beam').sourceSets.main.resources
]
}
}
}
mainClassName = 'application.Uc4BeamFlink'
...@@ -6,5 +6,14 @@ dependencies { ...@@ -6,5 +6,14 @@ dependencies {
implementation project(':uc4-beam') implementation project(':uc4-beam')
} }
sourceSets {
main {
resources {
srcDirs += [
project(':uc4-beam').sourceSets.main.resources
]
}
}
}
mainClassName = "application.Uc4BeamSamza" mainClassName = "application.Uc4BeamSamza"
application.name=theodolite-uc4-application
application.version=0.0.1
kafka.bootstrap.servers=localhost:9092
kafka.input.topic=input
kafka.output.topic=output
kafka.configuration.topic=configuration
kafka.feedback.topic=aggregation-feedback
kafka.window.duration.minutes=1
schema.registry.url=http://localhost:8081
aggregation.duration.days=30
aggregation.advance.days=1
trigger.interval=15
grace.period.ms=270
num.threads=1
commit.interval.ms=1000
cache.max.bytes.buffering=-1
specific.avro.reader=True
enable.auto.commit.config=True
auto.offset.reset.config=earliest
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment