functions-framework-java
functions-framework-java copied to clipboard
FaaS (Function as a service) framework for writing portable Java functions
There seems to be no way built in to stop a function running locally. Please consider including a 'stop' goal to match the existing 'run'. ``` mvn function:stop ```
Thanks for putting all this together! I was trying to get the local invoker working on my local machine, which is setup using kotlin (`1.3.72`) and gradle (`6.4.1`) via the...
I've got a GCP Cloud Function, called `call-handler`. It's got a HTTP trigger. The trigger URL is ```console https://**location**projectname**.cloudfunctions.net/call-handler ``` I need to reconstruct the original URL that triggered `call-handler`....
We were digging into Cloud Functions and OpenTelemetry and ran into an issue with getting the `traceparent` header to ensure tracing context is propagated. We noticed that the problem was...
Hi, I'm using micronaut framework with the function-maven-plugin. Running the function locally and also on a real gcp function the logger takes a lot of time to initialize. I'm using...
This allows tests to detect when server starts. Tests will execute faster than polling. Avoids exposing the server instance. Should have zero impact on existing usages
Would be useful to have callable function out of the box. [Docs](https://firebase.google.com/docs/functions/callable), [Specs](https://firebase.google.com/docs/functions/callable-reference)
Other frameworks have buildpack instructions for easily using this library in a container. - https://github.com/GoogleCloudPlatform/functions-framework-nodejs#quickstart-build-a-deployable-container - https://github.com/GoogleCloudPlatform/functions-framework-go#go-further-build-a-deployable-container - https://github.com/GoogleCloudPlatform/functions-framework-python#quickstart-build-a-deployable-container It would be nice if we had simple instructions no how...
Set port option in pom.xml file or in command line has no effect on function:run maven target. Invoker start always on 8080 port ```xml com.google.cloud.functions function-maven-plugin 0.9.4 myTarget 9090 ```...
Hi team, Is it possible for you to add CDI support in it with some configuration without using anything from EJB annotation and by using just javax.inject.* annotations? As the...