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

Optional IngestionJob parameters passed by Spark Launcher #1130

Merged
merged 22 commits into from
Nov 4, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
default values
Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com>
  • Loading branch information
pyalex committed Nov 4, 2020
commit 15b750b984d75f0d4200c55c5174be36246714b8
15 changes: 11 additions & 4 deletions sdk/python/feast/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,6 @@ class AuthProvider(Enum):
CONFIG_SERVING_ENABLE_SSL_KEY: "False",
# Path to certificate(s) to secure connection to Feast Serving
CONFIG_SERVING_SERVER_SSL_CERT_KEY: "",
# Enable or disable TLS/SSL to Feast Job Service
CONFIG_JOB_SERVICE_ENABLE_SSL_KEY: "False",
# Path to certificate(s) to secure connection to Feast Job Service
CONFIG_JOB_SERVICE_SERVER_SSL_CERT_KEY: "",
# Default connection timeout to Feast Serving, Feast Core, and Feast Job Service (in seconds)
CONFIG_GRPC_CONNECTION_TIMEOUT_DEFAULT_KEY: "10",
# Default gRPC connection timeout when sending an ApplyFeatureSet command to
Expand All @@ -142,4 +138,15 @@ class AuthProvider(Enum):
CONFIG_REDIS_PORT: "6379",
CONFIG_REDIS_SSL: "False",
CONFIG_SPARK_HISTORICAL_FEATURE_OUTPUT_FORMAT: "parquet",
# Enable or disable TLS/SSL to Feast Service
CONFIG_JOB_SERVICE_ENABLE_SSL_KEY: "False",
# Path to certificate(s) to secure connection to Feast Job Service
CONFIG_JOB_SERVICE_SERVER_SSL_CERT_KEY: "",
# IngestionJob StatD Config
pyalex marked this conversation as resolved.
Show resolved Hide resolved
CONFIG_STATSD_HOST: "",
CONFIG_STATSD_PORT: "",
# IngestionJob DeadLetter Destination
CONFIG_DEADLETTER_PATH: "",
# ProtoRegistry Address
pyalex marked this conversation as resolved.
Show resolved Hide resolved
CONFIG_STENCIL_URL: "",
}