-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make serverless alpha feature (#1928)
* Hide AWS Lambda feature server behind experimental flag Signed-off-by: Felix Wang <wangfelix98@gmail.com> * Ensure that registry is on S3 for AWS Lambda feature server Signed-off-by: Felix Wang <wangfelix98@gmail.com>
- Loading branch information
1 parent
a0918bf
commit d0778f7
Showing
4 changed files
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
FLAG_ALPHA_FEATURES_NAME = "alpha_features" | ||
FLAG_ON_DEMAND_TRANSFORM_NAME = "on_demand_transforms" | ||
FLAG_PYTHON_FEATURE_SERVER_NAME = "python_feature_server" | ||
FLAG_AWS_LAMBDA_FEATURE_SERVER_NAME = "aws_lambda_feature_server" | ||
ENV_FLAG_IS_TEST = "IS_TEST" | ||
|
||
FLAG_NAMES = { | ||
FLAG_ALPHA_FEATURES_NAME, | ||
FLAG_ON_DEMAND_TRANSFORM_NAME, | ||
FLAG_PYTHON_FEATURE_SERVER_NAME, | ||
FLAG_AWS_LAMBDA_FEATURE_SERVER_NAME, | ||
} |
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