mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
选题[tech]: 20210609 Making portable functions across serverless platforms
sources/tech/20210609 Making portable functions across serverless platforms.md
This commit is contained in:
parent
1beecf2c81
commit
d9ec0fbaa9
@ -0,0 +1,218 @@
|
||||
[#]: subject: (Making portable functions across serverless platforms)
|
||||
[#]: via: (https://opensource.com/article/21/6/quarkus-funqy)
|
||||
[#]: author: (Daniel Oh https://opensource.com/users/daniel-oh)
|
||||
[#]: collector: (lujun9972)
|
||||
[#]: translator: ( )
|
||||
[#]: reviewer: ( )
|
||||
[#]: publisher: ( )
|
||||
[#]: url: ( )
|
||||
|
||||
Making portable functions across serverless platforms
|
||||
======
|
||||
Quarkus Funqy brings portability to serverless functions.
|
||||
![Parts, modules, containers for software][1]
|
||||
|
||||
The rising popularity of serverless development alongside the increased adoption of multi- and hybrid-cloud architectures has created a lot of competition among platforms. This gives developers many choices about where they can run functions on serverless platforms—from public managed services to on-premises [Kubernetes][2].
|
||||
|
||||
If you've read my previous articles about [Java serverless][3], you learned how to get started [developing Java serverless functions][4] with Quarkus and how those serverless functions can be [optimized][5] to run on Kubernetes. So what should you do next to make your serverless functions fit better with the many choices available to you?
|
||||
|
||||
As a clue, think about why the Linux container (Docker, [LXC][6], cri-o) has become so popular: Portability. It's what made containers the de facto packaging technology for moving things from a developer's local machine to Kubernetes environments at scale. It means developers and operators don't need to worry about incompatibility and inconsistency between development and production environments.
|
||||
|
||||
For adopting multi- and hybrid cloud architectures, these container portability benefits should also be considered for serverless function development. Without portability, developers would likely have to learn and use different APIs, command-line interface (CLI) tools, and software development kits (SDKs) for each serverless platform when developing and deploying the same serverless functions across multiple serverless runtimes. Developers, who have limited resources (e.g., time, effort, cost, and human resources), would be so overwhelmed by the options that they would find it difficult to choose the best one.
|
||||
|
||||
![Many serverless runtime options][7]
|
||||
|
||||
(Daniel Oh, [CC BY-SA 4.0][8])
|
||||
|
||||
### Get Funqy the next time you hit a serverless dance floor
|
||||
|
||||
The [Quarkus Funqy][9] extension supports a portable Java API for developers to write serverless functions and deploy them to heterogeneous serverless runtimes, including AWS Lambda, Azure Functions, Google Cloud, and Knative. It is also usable as a standalone service. Funqy helps developers dance on the serverless floor without making code changes.
|
||||
|
||||
Here is a quick example of how to build a portable serverless function with Quarkus Funqy.
|
||||
|
||||
### 1\. Create a Quarkus Funqy Maven project
|
||||
|
||||
Generate a Quarkus project (`quarkus-serverless-func`) to create a simple function with Funqy extensions:
|
||||
|
||||
|
||||
```
|
||||
$ mvn io.quarkus:quarkus-maven-plugin:1.13.6.Final:create \
|
||||
-DprojectGroupId=org.acme \
|
||||
-DprojectArtifactId=quarkus-serverless-func \
|
||||
-Dextensions="funqy-http" \
|
||||
-DclassName="org.acme.getting.started.GreetingResource"
|
||||
```
|
||||
|
||||
### 2\. Run the serverless function locally
|
||||
|
||||
Open the `Funqy.java` file in the `src/main/java/org/acme/getting/started` directory:
|
||||
|
||||
|
||||
```
|
||||
public class Funqy {
|
||||
|
||||
private static final [String][10] CHARM_QUARK_SYMBOL = "c";
|
||||
|
||||
@Funq (1)
|
||||
public [String][10] charm(Answer answer) { (2)
|
||||
return CHARM_QUARK_SYMBOL.equalsIgnoreCase(answer.value) ? "You Quark!" : "👻 Wrong answer";
|
||||
}
|
||||
|
||||
public static class Answer {
|
||||
public [String][10] value; (3)
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
In the code above:
|
||||
|
||||
(1) Annotation makes the method an exposable function based on the Funqy API. The function name is equivalent to the method name (`charm`) by default.
|
||||
(2) Indicates a Java class (`Answer`) as an input parameter and `String` type for the output.
|
||||
(3) `value` should be parameterized when the function is invoked.
|
||||
|
||||
**Note**: Funqy does type introspection at build time to speed boot time, so the Funqy marshaling layer won't notice any derived types at runtime.
|
||||
|
||||
Run the function via Quarkus Dev Mode:
|
||||
|
||||
|
||||
```
|
||||
`$ ./mvnw quarkus:dev`
|
||||
```
|
||||
|
||||
The output should look like:
|
||||
|
||||
|
||||
```
|
||||
__ ____ __ _____ ___ __ ____ ______
|
||||
--/ __ \/ / / / _ | / _ \/ //_/ / / / __/
|
||||
-/ /_/ / /_/ / __ |/ , _/ ,< / /_/ /\ \
|
||||
\--\\___\\_\\____/_/ |_/_/|_/_/|_|\\____/___/
|
||||
INFO [io.quarkus] (Quarkus Main Thread) quarkus-serverless-func 1.0.0-SNAPSHOT on JVM (powered by Quarkus x.x.x.) started in 2.908s. Listening on: <http://localhost:8080>
|
||||
INFO [io.quarkus] (Quarkus Main Thread) Profile dev activated. Live Coding activated.
|
||||
INFO [io.quarkus] (Quarkus Main Thread) Installed features: [cdi, funqy-http, kubernetes]
|
||||
```
|
||||
|
||||
Now the function is running in your local development environment. Access the function with a RESTful API:
|
||||
|
||||
|
||||
```
|
||||
`$ http://localhost:8080/charm?value=s`
|
||||
```
|
||||
|
||||
The output should be:
|
||||
|
||||
|
||||
```
|
||||
`👻 Wrong answer`
|
||||
```
|
||||
|
||||
If you pass `value=c` down as a parameter, you will see:
|
||||
|
||||
|
||||
```
|
||||
`You Quark!`
|
||||
```
|
||||
|
||||
### 3\. Choose a serverless platform to deploy the Funqy function
|
||||
|
||||
Now you can deploy the portable function to your preferred serverless platform when you add one of the Quarkus Funqy extensions in the figure below. The advantage is that you will not need to change the code; you should need only to adjust a few configurations, such as function export and target serverless platform.
|
||||
|
||||
![Quarkus Funqy Extensions][11]
|
||||
|
||||
(Daniel Oh, [CC BY-SA 4.0][8])
|
||||
|
||||
Try to deploy the function using [Knative Serving][12] (if you have installed it in your Kubernetes cluster). Add the following extensions to the Quarkus Funqy project:
|
||||
|
||||
|
||||
```
|
||||
`$ ./mvnw quarkus:add-extension -Dextensions="kubernetes,container-image-docker"`
|
||||
```
|
||||
|
||||
Open the `application.properties` file in the `src/main/resources/` directory. Then add the following variables to configure Knative and Kubernetes resources—make sure to replace `changeit` with your container registry's group name (username in DockerHub):
|
||||
|
||||
|
||||
```
|
||||
quarkus.container-image.build=true
|
||||
quarkus.container-image.group=changeit
|
||||
quarkus.container-image.push=true
|
||||
quarkus.container-image.builder=docker
|
||||
quarkus.kubernetes.deployment-target=knative
|
||||
```
|
||||
|
||||
Containerize the function, then push it to the external container registry:
|
||||
|
||||
|
||||
```
|
||||
`$ ./mvnw clean package`
|
||||
```
|
||||
|
||||
The output should end with `BUILD SUCCESS`. Then a `knative.yml` file will be generated in the `target/kubernetes` directory. Now you should be ready to create a Knative service with the function using the following command (be sure to log into the Kubernetes cluster and change the namespace where you want to create the Knative service):
|
||||
|
||||
|
||||
```
|
||||
`$ kubectl create -f target/kubernetes/knative.yml`
|
||||
```
|
||||
|
||||
The output should be like this:
|
||||
|
||||
|
||||
```
|
||||
`service.serving.knative.dev/quarkus-serverless-func created`
|
||||
```
|
||||
|
||||
### 4\. Test the Funqy function in Kubernetes
|
||||
|
||||
Get the function's REST API and note its output:
|
||||
|
||||
|
||||
```
|
||||
$ kubectl get rt
|
||||
NAME URL READY REASON
|
||||
quarkus-serverless-func <http://quarkus-serverless-func-YOUR\_HOST\_DOMAIN> True
|
||||
```
|
||||
|
||||
Access the function quickly using a `curl` command:
|
||||
|
||||
|
||||
```
|
||||
`$ http://http://quarkus-serverless-func-YOUR_HOST_DOMAIN/charm?value=c`
|
||||
```
|
||||
|
||||
You see the same output as you saw locally:
|
||||
|
||||
|
||||
```
|
||||
`You Quark!`
|
||||
```
|
||||
|
||||
**Note**: The function will scale down to zero in 30 seconds because of Knative Serving's default behavior. In this case, the pod will scale up automatically when the REST API is invoked.
|
||||
|
||||
### What's next?
|
||||
|
||||
You've learned how developers can make portable Java serverless functions with Quarkus and deploy them across serverless platforms (e.g., Knative with Kubernetes). Quarkus enables developers to avoid redundancy when creating the same function and deploying it to multiple serverless platforms. My next article in this series will explain how to enable CloudEvents Bind with Java and Knative.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://opensource.com/article/21/6/quarkus-funqy
|
||||
|
||||
作者:[Daniel Oh][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[译者ID](https://github.com/译者ID)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://opensource.com/users/daniel-oh
|
||||
[b]: https://github.com/lujun9972
|
||||
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/containers_modules_networking_hardware_parts.png?itok=rPpVj92- (Parts, modules, containers for software)
|
||||
[2]: https://opensource.com/article/19/6/reasons-kubernetes
|
||||
[3]: https://opensource.com/article/21/5/what-serverless-java
|
||||
[4]: https://opensource.com/article/21/6/java-serverless-functions
|
||||
[5]: https://opensource.com/article/21/6/java-serverless-functions-kubernetes
|
||||
[6]: https://www.redhat.com/sysadmin/exploring-containers-lxc
|
||||
[7]: https://opensource.com/sites/default/files/uploads/choices.png (Many serverless runtime options)
|
||||
[8]: https://creativecommons.org/licenses/by-sa/4.0/
|
||||
[9]: https://quarkus.io/guides/funqy
|
||||
[10]: http://www.google.com/search?hl=en&q=allinurl%3Adocs.oracle.com+javase+docs+api+string
|
||||
[11]: https://opensource.com/sites/default/files/uploads/funqyextensions.png (Quarkus Funqy Extensions)
|
||||
[12]: https://knative.dev/docs/serving/
|
Loading…
Reference in New Issue
Block a user