forked from opensearch-project/opensearch-spark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Hive container will now store data on a volume * Spark containers now use a built image, no need for custom entrypoint script or to start with root user Signed-off-by: Norman Jordan <norman.jordan@improving.com>
- Loading branch information
1 parent
60eb7bc
commit c43791f
Showing
6 changed files
with
31 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright OpenSearch Contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
ARG SPARK_VERSION=3.5.3 | ||
FROM bitnami/spark:${SPARK_VERSION} | ||
|
||
USER root | ||
RUN apt update | ||
RUN apt install -y curl | ||
|
||
USER 1001 | ||
COPY ./spark-defaults.conf /opt/bitnami/spark/conf/spark-defaults.conf | ||
COPY ./log4j2.properties /opt/bitnami/spark/conf/log4j2.properties |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.