-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile to ciux source pathes Increase parameters management Add separate log level for spark Improve build script configuration
- Loading branch information
Showing
16 changed files
with
149 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,53 @@ | ||
# Default values for chart. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
# Can be overriden in stream2raw, raw2science and distribution sections | ||
cores: 1 | ||
coreRequest: 0 | ||
instances: 1 | ||
memory: 1g | ||
# instances: 1 | ||
|
||
night: "20200101" | ||
fink_trigger_update: "2" | ||
|
||
image: | ||
name: fink-broker-noscience | ||
# Can be overriden using --image option | ||
|
||
# Default to s3a://<s3.bucket> | ||
# online_data_prefix: s3a://fink-broker-online | ||
producer: sims | ||
|
||
log_level: INFO | ||
|
||
# | ||
# Parameters used to run the stream2raw task | ||
# | ||
stream2raw: | ||
cores: "{{.Values.cores}}" | ||
coreRequest: "{{.Values.coreRequest}}" | ||
memory: "{{.Values.memory}}" | ||
instances: "{{.Values.instances}}" | ||
fink_alert_schema: /home/fink/fink-alert-schemas/ztf/ztf_public_20190903.schema.avro | ||
kafka: | ||
topic: "ztf-stream-sim" | ||
in_sockets: kafka-cluster-kafka-bootstrap.kafka:9092 | ||
starting_offset: earliest | ||
topic: ztf-stream-sim | ||
|
||
# | ||
# Parameters used to access the S3 bucket | ||
# Parameters used to run the raw2science task | ||
# | ||
raw2science: | ||
cores: "{{.Values.cores}}" | ||
coreRequest: "{{.Values.coreRequest}}" | ||
memory: "{{.Values.memory}}" | ||
instances: "{{.Values.instances}}" | ||
|
||
# | ||
s3: | ||
bucket: "fink-broker-online" | ||
# Parameters used to run the distribution task | ||
# | ||
distribution: | ||
cores: "{{.Values.cores}}" | ||
coreRequest: "{{.Values.coreRequest}}" | ||
memory: "{{.Values.memory}}" | ||
instances: "{{.Values.instances}}" | ||
kafka: | ||
out_sockets: "kafka-cluster-kafka-external-bootstrap.kafka:9094" | ||
schema: "/home/fink/fink-alert-schemas/ztf/distribution_schema_0p2.avsc" | ||
substream_prefix: "fink_" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Can be overriden in stream2raw, raw2science and distribution sections | ||
cores: 1 | ||
coreRequest: 0 | ||
instances: 1 | ||
memory: 1g | ||
# instances: 1 | ||
|
||
fink_trigger_update: "2" | ||
|
||
# Can be overriden using --image option | ||
|
||
# Default to s3a://<s3.bucket> | ||
# online_data_prefix: s3a://fink-broker-online | ||
producer: sims | ||
|
||
log_level: INFO | ||
|
||
# | ||
# Parameters used to run the stream2raw task | ||
# | ||
stream2raw: | ||
cores: "{{.Values.cores}}" | ||
coreRequest: "{{.Values.coreRequest}}" | ||
memory: "{{.Values.memory}}" | ||
instances: "{{.Values.instances}}" | ||
fink_alert_schema: /home/fink/fink-alert-schemas/ztf/ztf_public_20190903.schema.avro | ||
kafka: | ||
in_sockets: kafka-cluster-kafka-bootstrap.kafka:9092 | ||
starting_offset: earliest | ||
topic: ztf-stream-sim | ||
|
||
# | ||
# Parameters used to run the raw2science task | ||
# | ||
raw2science: | ||
cores: "2" | ||
coreRequest: "0" | ||
memory: "3000m" | ||
instances: "2" | ||
|
||
# | ||
# Parameters used to run the distribution task | ||
# | ||
distribution: | ||
cores: "{{.Values.cores}}" | ||
coreRequest: "{{.Values.coreRequest}}" | ||
memory: "{{.Values.memory}}" | ||
instances: "{{.Values.instances}}" | ||
kafka: | ||
out_sockets: "kafka-cluster-kafka-external-bootstrap.kafka:9094" | ||
schema: "/home/fink/fink-alert-schemas/ztf/distribution_schema_0p2.avsc" | ||
substream_prefix: "fink_" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters