From e3916f902460f8658cf70c9fa0f305c5916f49d8 Mon Sep 17 00:00:00 2001 From: Soby Chacko Date: Mon, 19 Mar 2018 15:10:34 -0400 Subject: [PATCH] docs polishing - schema registry samples --- .../schema-registry-confluent/README.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/schema-registry-samples/schema-registry-confluent/README.adoc b/schema-registry-samples/schema-registry-confluent/README.adoc index ec0019e..d0c8090 100644 --- a/schema-registry-samples/schema-registry-confluent/README.adoc +++ b/schema-registry-samples/schema-registry-confluent/README.adoc @@ -25,6 +25,11 @@ Build the project: `./mvnw clean package` ---- /bin/schema-registry-start ./etc/schema-registry/schema-registry.properties ---- + +In order to run this sample, you need to set compatibility to `NONE` on Confluent schema registry server. + +`curl -X PUT http://127.0.0.1:8081/config -d '{"compatibility": "NONE"}' -H "Content-Type:application/json"` + - Start `consumer` on another terminal session [source,bash] ----