Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. | Compatibility Check Strategy | Changes allowed | Check against which schemas | Upgrade first |
  2. | ------------- | ------------- | ----- | ---- |
  3. | `ALWAYS_INCOMPATIBLE` | All changes are disabled | All previous versions | None |
  4. | `ALWAYS_COMPATIBLE` | All changes are allowed | Compatibility checking disabled | Depends |
  5. | `BACKWARD` | Delete fields; Add optional fields | Latest version | Consumers |
  6. | `BACKWARD_TRANSITIVE` | Delete fields; Add optional fields | All previous versions | Consumers |
  7. | `FORWARD` | Add fields; Delete optional fields | Latest version | Producers |
  8. | `FORWARD_TRANSITIVE` | Add fields; Delete optional fields | All previous versions | Producers |
  9. | `FULL` | Modify optional fields | Latest version | Any order |
  10. | `FULL_TRANSITIVE` | Modify optional fields | All previous versions | Any order |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement