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/08/01 07:03:15 UTC

[GitHub] [pulsar] Anonymitaet commented on a change in pull request #4841: [Doc] Add Schema Evolution and Compatibility section

Anonymitaet commented on a change in pull request #4841: [Doc] Add Schema Evolution and Compatibility section
URL: https://github.com/apache/pulsar/pull/4841#discussion_r309549189
 
 

 ##########
 File path: site2/docs/schema-evolution-compatibility.md
 ##########
 @@ -0,0 +1,165 @@
+---
+id: schema-evolution-compatibility
+title: Schema evolution and compatibility
+sidebar_label: Schema evolution and compatibility
+---
+
+## Schema evolution
+
+Pulsar schema is defined in a data structure called `SchemaInfo`. 
+
+Each `SchemaInfo` stored with a topic has a version. The version is used to manage the schema changes happening within a topic. 
+
+The message produced with `SchemaInfo` is tagged with a schema version. When a message is consumed by a Pulsar client, the Pulsar client can use the schema version to retrieve the corresponding `SchemaInfo` and use the correct schema information to deserialize data.
+
+### What is schema evolution?
+
+Schemas store the details of attributes and types. To satisfy new business requirements,  you need to update schemas inevitably over time, which is called **schema evolution**. 
+
+Any schema changes affect downstream consumers. Schema evolution ensures that the downstream consumers can seamlessly handle data encoded with both old schemas and new schemas. 
+
+### How Pulsar schema should evolve? 
+
+The answer is Pulsar schema compatibility check strategy. It determines how schema compares old schemas with new schemas in topics.
+
+For more information, see [Schema compatibility check strategy](#schema-compatibility-check-strategy).
+
+### How does Pulsar support schema evolution?
+
+1. When a producer/consumer/reader connects to a broker, the broker deploys the schema compatibility checker configured by `schemaRegistryCompatibilityCheckers` to enforce schema compatibility check. 
+
+    The schema compatibility checker is one instance per schema type. 
+    
+    Currently, Avro and JSON have their own compatibility checkers, while all the other schema types share the default compatibility checker which disables schema evolution.
+
+2. The producer/consumer/reader sends its client `SchemaInfo` to the broker. 
+   
+3. The broker knows the schema type and locates the schema compatibility checker for that type. 
+
+4. The broker uses the checker to check if the `SchemaInfo` is compatible with the latest schema of the topic by applying its compatibility check strategy. 
+   
+   Currently, the compatibility check strategy is configured at the namespace level and applied to all the topics within that namespace.
+
+## Schema compatibility check strategy
+
+Pulsar has 8 schema compatibility check strategies, which are summarized in the following table.
+
+Suppose that you have a topic containing three schemas (V1, V2, and V3), V1 is the oldest and V3 is the latest:
+
+| Compatibility check strategy | Definition | Changes allowed | Check against which schema | Upgrade first |
+|---|---|---|---|---|
+| `ALWAYS_COMPATIBLE` | Disable schema compatibility check | All changes are allowed | All previous versions | Any order |
+| `ALWAYS_INCOMPATIBLE` | Disable schema evolution | All changes are disabled | / | / |
+| `BACKWARD` | Consumers using the schema V3 can process data written by producers using the schema V3 or V2 | Add optional fields<br>Delete fields | Latest version | Consumers |
+| `BACKWARD_TRANSITIVE` | Consumers using the schema V3 can process data written by producers using the schema V3, V2 or V1 | Add optional fields<br>Delete fields | All previous versions | Consumers |
+| `FORWARD` | Consumers using the schema V3 or V2 can process data written by producers using the schema V3 | Add fields<br>Delete optional fields | Latest version | Producers |
+| `FORWARD_TRANSITIVE` | Consumers using the schema V3, V2 or V1 can process data written by producers using the schema V3 | Add fields<br>Delete optional fields | All previous versions | Producers |
+| `FULL` | Backward and forward compatible between the schema V3 and V2 | Modify optional fields | Latest version | Any order |
+| `FULL_TRANSITIVE` | Backward and forward compatible among the schema V3, V2, and V1 | Modify optional fields | All previous versions | Any order |
+
+### ALWAYS_COMPATIBLE and ALWAYS_INCOMPATIBLE 
+
+| Compatibility check strategy | Definition | Note |
+|---|---|---|
+`ALWAYS_COMPATIBLE` | Disable schema compatibility check. | /
+`ALWAYS_INCOMPATIBLE` | Disable schema evolution, that is, any schema change is rejected. | For all schema types except Avro and JSON, the default schema compatibility check strategy is `ALWAYS_INCOMPATIBLE`. <br>For Avro and JSON, the default schema compatibility check strategy is `FULL`. |
+
+#### Example 
+  
+* Example  1
+  
+    In some situations, an application needs to store events of several different types in the same Pulsar topic. 
+
+    In particular, when developing a data model in an `Event Sourcing` style, you might have several kinds of events that affect the state of an entity. 
+
+    For example, for a user entity, there are `userCreated`, `userAddressChanged` and `userEnquiryReceived` events. The application requires that those events are always read in the same order. 
+
+    Consequently, those events need to go in the same Pulsar partition to maintain order. This application can use `ALWAYS_COMPATIBLE` to allow different kinds of events co-exist in the same topic.
+
+* Example 2
+
+    Sometimes we also make incompatible changes. 
+
+    For example, you are modifying a field type from `string` to `int`.
+
+    In this case, you need to:
+
+    * Upgrade all producers and consumers to the new schema versions at the same time.
+
+    * Optionally, create a new topic and start migrating applications to use the new topic and the new schema, avoiding the need to handle two incompatible versions in the same topic.
+
+### BACKWARD and BACKWARD_TRANSITIVE 
+
+Suppose that you have a topic containing three schemas (V1, V2, and V3), V1 is the oldest and V3 is the latest:
+
+| Compatibility check strategy | Definition  | Description |
+|---|---|---|
+`BACKWARD` | Consumers using the new schema can process data written by producers using the **last schema**. | The consumers using the schema V3 can process data written by producers using the schema V3 or V2. |
+`BACKWARD_TRANSITIVE` | Consumers using the new schema can process data written by producers using **all previous schemas**. | The consumers using the schema V3 can process data written by producers using the schema V3, V2, or V1. |
+
+#### Example  
+  
+* Example 1
+  
+    Remove a field.
+    
+    A consumer constructed to process events without one field can process events written with the old schema containing the field, and the consumer will ignore that field.
+
+* Example 2
+  
+    You want to load all Pulsar data into a Hive data warehouse and run SQL queries against the data. 
+
+    Same SQL queries must continue to work even the data is changed. To support it, you can evolve the schemas using the `BACKWARD` strategy.
+
+### FORWARD and FORWARD_TRANSITIVE 
+
+Suppose that you have a topic containing three schemas (V1, V2, and V3), V1 is the oldest and V3 is the latest:
+
+| Compatibility check strategy | Definition | Description |
+|---|---|---|
+`FORWARD` | Consumers using the **last schema** can process data written by producers using a new schema, even though they may not be able to use the full capabilities of the new schema. | The consumers using the schema V3 or V2 can process data written by producers using the schema V3. |
+`FORWARD_TRANSITIVE` | Consumers using **all previous schemas** can process data written by producers using a new schema. | The consumers using the schema V3, V2, or V1 can process data written by producers using the schema V3. 
+
+#### Example  
+  
+* Example 1
+  
+  Add a field.
+  
+  In most data formats, consumers written to process events without new fields can continue doing so even when they receive new events containing new fields.
+
+* Example 2
+  
+  If a consumer has an application logic tied to a full version of a schema, the application logic may not be updated instantly when the schema evolves.
+  
+  In this case, you need to project data with a new schema onto an old schema that the application understands. 
+  
+  Consequently, you can evolve the schemas using the `FORWARD` strategy to ensure that the old schema can process data encoded with the new schema.
+
+### FULL and FULL_TRANSITIVE 
+
+Suppose that you have a topic containing three schemas (V1, V2, and V3), V1 is the oldest and V3 is the latest:
+
+| Compatibility check strategy | Definition | Description | Note |
+|---|---|---|---|
+`FULL` |  Schemas are both backward and forward compatible, which means consumers using the last schema can process data written by producers using the new schema and consumers using the new schema can process data written by producers using the last schema. | The consumers using the schema V3 can process data written by producers using the schema V3 or V2, and the consumers using the schema V3 or V2 can process data written by producers using the schema V3. | For Avro and JSON, the default schema compatibility check strategy is `FULL`. <br>For all schema types except Avro and JSON, the default schema compatibility check strategy is `ALWAYS_INCOMPATIBLE`. |
+`FULL_TRANSITIVE` | The new schema is backward and forward compatible with all previously registered schemas. | The consumers using the schema V3 can process data written by the producers using the schema V3, V2 or V1, and the consumers using the schema V3, V2 or V1 can process data written by the producers using the schema V3. |
+
+#### Example  
+
+In some data formats, for example, Avro, you can define fields with default values. Consequently, adding or removing a field with a default value is a fully compatible change.
+
+## Order of upgrading clients
+
+The order of upgrading client applications is determined by the compatibility check strategy.
+
+For example, the producers using schemas to write data to Pulsar and the consumers using schemas to read data from Pulsar. 
+
+| Compatibility check strategy | Description |
+|---|---|
+`ALWAYS_COMPATIBLE` | The compatibility check is disabled. <br>Consequently, you can upgrade the producers and consumers in **any order**. |
+`ALWAYS_INCOMPATIBLE` | / |
 
 Review comment:
   @sijie Thank you, I've replaced "/" with "contents".

----------------------------------------------------------------
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