You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/09/18 02:10:18 UTC

[GitHub] [pulsar] pouledodue opened a new issue #5208: Schema modification question

pouledodue opened a new issue #5208: Schema modification question
URL: https://github.com/apache/pulsar/issues/5208
 
 
   I delete a schema:
   `pulsar-admin schemas delete  persistent://a/b/c`
   
   I verify it is deleted:
   `pulsar-admin schemas get persistent://a/b/c`
   `> HTTP 404 Not Found`
   
   I verify it is deleted with the `version`
   `pulsar-admin schemas get --version 0 persistent://a/b/c`
   ```
   {
     "name": "c",
     "schema": {
       "name": "YoshiSchema",
       "type": "record",
       "fields": [
         {
           "name": "comment",
           "type": "string"
         }
       ]
     },
     "type": "AVRO",
     "properties": {
       "key1": "value1"
     }
   }
   ```
   
   oops it is still there why?
   Should it have a prop `deleted = true` ?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services