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

Port AWS Lambda (V1 and V2) to use the Target API #9491

Merged
merged 9 commits into from
Apr 8, 2020

Conversation

Eric-Arellano
Copy link
Contributor

@Eric-Arellano Eric-Arellano commented Apr 8, 2020

V1 vs. V2 implementations

The implementations are different. V1 expects you to pass the field binary to specify a specific python_binary, whereas V2 is much more flexible in allowing you to specify sources and/or dependencies so that the python_awslambda target acts like a python_binary target. This results in much less boilerplate.

V1:

Screen Shot 2020-04-07 at 11 02 31 PM

V2:

Screen Shot 2020-04-07 at 11 03 08 PM

In a followup, we will deprecate V1 AWS Lambda for the V2 implementation.

Result: better error message on invalid target types

▶ ./v2 --no-print-exception-stacktrace awslambda src/python/pants/util:strutil

ERROR: None of the provided targets work with the goal awslambda. This goal works with the following target types: ['python_awslambda'].

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.

# 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.
Comment on lines +7 to +10
class PythonAwsLambdaBinaryField(StringField):
"""Target spec of the `python_binary` that contains the handler."""

alias = "binary"
Copy link
Contributor Author

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.

Comment on lines -37 to +43
files_content = list(
self.request_single_product(FilesContent, Params(created_awslambda.digest))
)
files_content = self.request_single_product(FilesContent, created_awslambda.digest)
Copy link
Contributor Author

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[
Copy link
Contributor Author

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.
@Eric-Arellano Eric-Arellano merged commit a196b18 into pantsbuild:master Apr 8, 2020
@Eric-Arellano Eric-Arellano deleted the port-awslambda branch April 8, 2020 19:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants