Here is my kafka consumer exception :
23:24:51.268 [main] DEBUG i.c.k.s.client.rest.RestService - Sending GET with input null to http://localhost:8081/schemas/ids/1
org.apache.kafka.common.errors.SerializationException: Error deserializing key/value for partition rss-0 at offset 4091. If needed, please seek past the record to continue consumption.
Caused by: org.apache.kafka.common.errors.SerializationException: Error deserializing Avro message for id 1
Caused by: org.apache.kafka.common.errors.SerializationException: Could not find class org.rssnews.producer.AvroRSSItem specified in writer's schema whilst finding reader's schema for a SpecificRecord.
When I looked at producer code, I realized I renamed the org.rssnews.producer.AvroRSSItem to org.rssnews.producer.avro.AvroRSItem.
I am looking if I can fix the schema definition :
{"namespace": "org.rssnews.producer",
"type": "record",
"name": "AvroRSSItem",
"fields": [
{"name": "source", "type": "string"},
{"name": "title", "type": "string"},
{"name": "url", "type": "string"},
{"name": "description", "type": ["string","null"]},
{"name": "publishedAt", "type": ["null",{"type":"long", "logicType":"timestamp-millis"}]}
]
}
I believe if I can fix the namespace in here. I should get the correct derserializer for the consumer.
Try to delete, but get the following error message :
D:\apps\kafka_2.11-2.3.0>curl -X GET http://127.0.0.1:8081/schemas/ids/1
{"schema":"{\"type\":\"record\",\"name\":\"AvroRSSItem\",\"namespace\":\"org.rssnews.producer\",\"fields\":[{\"name\":\"source\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"title\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"url\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"description\",\"type\":[{\"type\":\"string\",\"avro.java.string\":\"String\"},\"null\"]},{\"name\":\"publishedAt\",\"type\":[\"null\",{\"type\":\"long\",\"logicType\":\"timestamp-millis\"}]}]}"} D:\apps\kafka_2.11-2.3.0>curl -X DELETE http://127.0.0.1:8081/schemas/ids/1
{"error_code":405,"message":"HTTP 405 Method Not Allowed"}
D:\apps\kafka_2.11-2.3.0>
Sunday, August 25, 2019
Friday, August 23, 2019
ZooNavigator
Setup project : https://www.elkozmon.com/zoonavigator/development/setup/
- Backend server, port 9000
$ git clone https://github.com/elkozmon/zoonavigator-api.git
$ cd zoonavigator-api
$ sbt play/run
If you don't have sbt, download from https://www.scala-sbt.org/download.html
- UI : angular
, port 4200
$ git clone https://github.com/elkozmon/zoonavigator-web.git
$ cd zoonavigator-web
$ npm install -g @angular/cli
$ npm install$ npm run dev
The connection string is zookeeper host and port. Default is 127.0.0.1:2181
Subscribe to:
Posts (Atom)