dapr / dapr/java-sdk

How to specify type with metadata of pubsub?

Ouverte
#772 2 commentaires 0 réactions 0 personnes assignées Voir sur GitHub
Langage dominant
Java
Étoiles
300
Forks
230
Merge moyen
5 j 1 h
PR mergées (30 j)
5

Description

The CloudEvent spec says we can specify the `type` in the metadata. The SDK allows metadata customization when publishing an event as below
```java
Map metadata = new HashMap<>();
metadata.put("type", "com.test.user.created");
Mono result = client.publishEvent("pubsub", "inbox", payload, metadata);
result.block(Duration.ofSeconds(2));
```

But the `type` seems always be `com.dapr.event.sent`. I debug into the gRPC code down to protocol buffer`serializeStringMapTo` and I am pretty sure the `type` is correctly written to the sidecar via 50001.

Are there anything wrong here? And can I specify other metadata like `metadata.rawPayload`?

If I do a POST with curl, this works
```
curl -X POST http://myurl... -d {"specversion" : "1.0", "type" : "com.mytest", "source" : "testcloudeventspubsub", "subject" : "Cloud Events Test", "id" : "111111", "time" : "2021-08-02T09:00:00Z", "datacontenttype" : "application/cloudevents+json", "data" : {"orderId": "100"}}
```
So I guess this problem only occurs in gRPC. However, the SDK does not support HTTP for pub/sub, right?

Guide de contribution

Ouvrir le guide de contribution

Piste de recherche

Start at the Java SDK's publishEvent path and the gRPC serializeStringMapTo call described in the issue; reproduce the metadata type case against the sidecar on port 50001 and compare it with the working HTTP request. Done means determining whether gRPC preserves CloudEvent metadata and documenting or correcting the observed behavior, including the metadata.rawPayload question.

Rédigé par le modèle d'indexation à partir du texte de l'issue.

Évaluation

Stack technique
grpc, java
Domaine
api, backend
Type d'issue
Bug
Difficulté
4/5
Temps estimé
3-5 jours
Activité
À l'abandon
Clarté
À clarifier
Accessibilité débutants
30/100

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.