micronaut-gcp icon indicating copy to clipboard operation
micronaut-gcp copied to clipboard

Integration between Micronaut and Google Cloud Platform (GCP)

Results 77 micronaut-gcp issues
Sort by recently updated
recently updated
newest added

I wrote a test for the example GCP http function and it failed by throwing exception: `io.micronaut.context.exceptions.BeanInstantiationException at DefaultBeanContext.java:1915 Caused by: java.lang.UnsupportedOperationException at ArgumentBinderRegistry.java:38` If I remove the `@MicronautTest` annotation,...

status: example attached
status: awaiting validation
info: workaround available

### Feature description Today I was debugging very high thread usage of one of my applications. In the thread dump I noticed a lot of threads called "`Subscriber-SE--`". These threads...

### Expected Behavior A native image should be generated ### Actual Behaviour The following error is shown: ``` [application:29] analysis: 53,123.08 ms, 4.90 GB Error: Classes that should be initialized...

relates-to: graal
type: bug

### Feature description Having the following code; ``` @PubSubClient(project = "${gcp.project-id}") public interface ProductPubSubClient { @Topic("${pubsub.topic-name}") String send( DataDto dataDto, @MessageHeader(name = "eventId") UUID eventId, @MessageHeader(name = "eventType") String eventType,...

type: enhancement

Hi! I am using GCP (Functions), Maven build, Micronaut 2.5.4 I created a controller with one entry point (code posted below), and running the function locally: mvn clean install function:run...

### Expected Behavior Successful retrieval and reading of a secret stored in Secret Manager. ### Actual Behaviour The following stack trace is generated when attempting to retrieve a secret: ```...

relates-to: graal
status: awaiting validation
info: workaround available

### Expected Behavior After adding `--initialize-at-run-time=io.grpc.netty.shaded.io.netty.internal.tcnative.CertificateCompressionAlgo` to buildArgs, and `` property to the `StackdriverJsonLayout` in logback.xml I've managed to successfully build a native image with the micronaut-gcp-tracing dependency (v4.8.0). ###...

relates-to: graal

Google Cloud Pub/Sub have samples on how to propagate tracing using Pub/Sub libraries https://opencensus.io/integrations/google_cloud/google_cloud_pubsub/java/. Would be nice to have, I have a WIP code already. Could use some help in...

type: enhancement

Right now `ComputeInstanceMetadata.getMetadata` seems to return just the known metadata in both impls, ie: https://github.com/micronaut-projects/micronaut-core/blob/e3e3dd16f3c8641c02696e45c1f8bd6de5838c22/runtime/src/main/java/io/micronaut/discovery/cloud/gcp/GoogleComputeInstanceMetadataResolver.java#L178 It'd be nice to instead have access to the full JSON returned.

type: improvement

### Description According to google [service to service](https://cloud.google.com/run/docs/authenticating/service-to-service) authorisation, the metadata/instance endpoint can be queried to get auth token. While it works for other resources on GCP, it does not...

type: bug