Please enable JavaScript.
Coggle requires JavaScript to display documents.
EDA (Schemas (JSON Schema (standard) (Ikke påkrevd, må benyttes i tillegg…
EDA
Schemas
JSON Schema (standard)
Ikke påkrevd, må benyttes i tillegg til JSON
-
-
-
-
-
-
"Schema evolution"
-
Avro, Thrift og Protobuff støtter dette
-
Schema registry
-
Heftig oppsett med master/slave, Zookeeper og Kafka som lagring
-
-
Kompatiblitets-settings
Backward (default)
A new schema is backwards compatible if it can be used to read the data written in the latest registered schema
Transitive backward
A new schema is transitively backwards compatible if it can be used to read the data written in all previously registered schemas
Forward
A new schema is forward compatible if the latest registered schema can read data written in this schema.
Transitive forward
A new schema is transitively forward compatible if all previous schemas can read data written in this schema
Full
A new schema is fully compatible if it’s both backward and forward compatible with the latest registered schema
Transitive full
A new schema is transitively full compatible if it’s both backward and forward compatible with all previously registered schemas
-
-
-
-