-
-
Notifications
You must be signed in to change notification settings - Fork 655
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
Port AWS Lambda (V1 and V2) to use the Target API #9491
Conversation
# Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
# Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
# Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
Prework for generalizing Configurations. # Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
class PythonAwsLambdaBinaryField(StringField): | ||
"""Target spec of the `python_binary` that contains the handler.""" | ||
|
||
alias = "binary" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be required, but Benjy and I couldn't figure out how the V1 code works because it also looks at the dependencies
field to determine what the binary is..So, I left it as optional.
NB that this binding is solely so that we parse the BUILD file and can pass it down to V1. V1 will still express its "requiredness" itself.
files_content = list( | ||
self.request_single_product(FilesContent, Params(created_awslambda.digest)) | ||
) | ||
files_content = self.request_single_product(FilesContent, created_awslambda.digest) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is possible because we made Collections
much more powerful recently, e.g. implementing __len__
on it.
@@ -113,18 +113,18 @@ class Binary(Goal): | |||
registered_target_types: RegisteredTargetTypes, | |||
) -> CreatedBinary: | |||
target = wrapped_target.target | |||
binary_config_types: Iterable[Type[BinaryConfiguration]] = union_membership.union_rules[ | |||
config_types: Iterable[Type[BinaryConfiguration]] = union_membership.union_rules[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name change to make this Configuration code a little more generic. I'm starting to look for patterns that make sense to be factored up.
# Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
# Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
# Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
* a handler entry point is not a normal entry point, i.e. it does not work with things like `./v2 binary` * there's no reason to only allow one single `sources` file # Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
# Delete this line to force CI to run Clippy and the Rust tests. [ci skip-rust-tests] # No Rust changes made. # Delete this line to force CI to run the JVM tests. [ci skip-jvm-tests] # No JVM changes made.
V1 vs. V2 implementations
The implementations are different. V1 expects you to pass the field
binary
to specify a specificpython_binary
, whereas V2 is much more flexible in allowing you to specifysources
and/ordependencies
so that thepython_awslambda
target acts like apython_binary
target. This results in much less boilerplate.V1:
V2:
In a followup, we will deprecate V1 AWS Lambda for the V2 implementation.
Result: better error message on invalid target types
Note that this will only error if no targets were valid. It will not error if some targets are invalid and some are valid.
--
This also fixes bad
source
field entries in the root level BUILD.