-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
142 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# enable debug | ||
export PRAMENPY_DEBUG=True | ||
# app settings (needed to run the app) | ||
## default metastore filesystem (available options are: hdfs, s3, local) | ||
## default = "hdfs" | ||
export PRAMENPY_DEFAULT_FS="local" | ||
## in case of Py4JJavaError execution will be retried this number of times | ||
## default is 1 | ||
export PRAMENPY_MAX_RETRIES_EXECUTE_TRANSFORMATION=1 | ||
## sparks related | ||
### if not present, will be skipped | ||
# export PRAMENPY_SPARK_JAVA_HOME= | ||
### if not present, will be skipped | ||
export PRAMENPY_SPARK_CONFIG=spark.driver.host=127.0.0.1 |
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,14 @@ | ||
# enable debug | ||
export PRAMENPY_DEBUG=False | ||
# app settings (needed to run the app) | ||
## default metastore filesystem (available options are: hdfs, s3, local) | ||
## default = "hdfs" | ||
export PRAMENPY_DEFAULT_FS="local" | ||
## in case of Py4JJavaError execution will be retried this number of times | ||
## default is 1 | ||
export PRAMENPY_MAX_RETRIES_EXECUTE_TRANSFORMATION=1 | ||
## sparks related | ||
### if not present, will be skipped | ||
#export PRAMENPY_SPARK_JAVA_HOME=/usr | ||
### if not present, will be skipped | ||
export PRAMENPY_SPARK_CONFIG=spark.master=local,spark.driver.host=127.0.0.1,spark.driver.bindAddress=127.0.0.1,spark.executor.instances=1,spark.executor.cores=1,spark.ui.enabled=false |
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 |
---|---|---|
|
@@ -144,7 +144,6 @@ dmypy.json | |
/cdk.context.json | ||
|
||
# DotENV files | ||
.env* | ||
!.env.local | ||
!.env.example | ||
!.env.ci | ||
|