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

Spark history server #353

Open
wants to merge 1 commit into
base: master
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
5 changes: 5 additions & 0 deletions helm/spark-yotpo/templates/sparkapplication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.historyServer.enabled }}
{{- range $conf, $value := .Values.historyServer.conf }}
{{ $conf | quote }}: {{ $value | quote }}
{{- end }}
{{- end }}
{{- if .Values.hadoopConf }}
hadoopConf:
{{- range $conf, $value := .Values.hadoopConf }}
Expand Down
5 changes: 5 additions & 0 deletions helm/spark-yotpo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ sparkConf:
spark.serializer: org.apache.spark.serializer.KryoSerializer
spark.sql.hive.convertMetastoreParquet: false
spark.sql.legacy.allowCreatingManagedTableUsingNonemptyLocation: true
historyServer:
enabled: false
conf:
spark.eventLog.enabled: true
spark.eventLog.dir: s3://event-log-bucket
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lyogev this cant be env var, spark dont know how to extrapolate it during runtime...what do u thin we should do? i think we should remove this code from here and place in a closed source proejct, WDYT?

hiveMetaStore:
enabled: false
conf:
Expand Down