shibd commented on PR #119:
URL: 
https://github.com/apache/pulsar-client-python/pull/119#issuecomment-1560784242

   Use this patch. Although flowing define will create two schemas, that's 
okay, right? It will use write schema of writing that message to deserialize 
the data.
   
   ```python
   class User(Record):
       name = String()
       age = Integer()
   ```
   
   ```java
       @AllArgsConstructor
       @Getter
       static class User {
           private final String name;
           private final int age;
       }
   ```
   
   Do we need to continue to solve this problem?
   
https://github.com/apache/pulsar-client-python/issues/108#issuecomment-1488657932


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to