Skip to content

Commit

Permalink
minor: updated property names
Browse files Browse the repository at this point in the history
  • Loading branch information
gokerakc committed Feb 5, 2024
1 parent 28d3554 commit 820c410
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ Field Name | Type |
<a name="topicConfigurationRetentionBytes"></a>`retention.bytes` | integer | The [`retention.bytes`](https://kafka.apache.org/documentation/#topicconfigs_retention.bytes) configuration option. | OPTIONAL | see kafka documentation
<a name="topicConfigurationDeleteRetentionBytes"></a>`delete.retention.ms` | integer | The [`delete.retention.ms`](https://kafka.apache.org/documentation/#topicconfigs_delete.retention.ms) configuration option. | OPTIONAL | see kafka documentation
<a name="topicConfigurationMaxMessageBytes"></a>`max.message.bytes` | integer | The [`max.message.bytes`](https://kafka.apache.org/documentation/#topicconfigs_max.message.bytes) configuration option. | OPTIONAL | see kafka documentation
<a name="topicConfigurationSchemaKeyValidationEnabled"></a>`schema.key.validation.enabled` | boolean | It shows whether the schema validation for the message key is enabled. | OPTIONAL | -
<a name="topicConfigurationSchemaKeyLookupStrategy"></a>`schema.key.lookup.strategy` | string | The name of the schema lookup strategy for the message key. | OPTIONAL | Clients should default to the vendor default if not supplied.
<a name="topicConfigurationSchemaValueValidationEnabled"></a>`schema.value.validation.enabled` | boolean | It shows whether the schema validation for the message value is enabled. | OPTIONAL | -
<a name="topicConfigurationSchemaValueLookupStrategy"></a>`schema.value.lookup.strategy` | string | The name of the schema lookup strategy for the message value. | OPTIONAL | Clients should default to the vendor default if not supplied.
<a name="topicConfigurationConfluentKeySchemaValidation"></a>`confluent.key.schema.validation` | boolean | It shows whether the schema validation for the message key is enabled. Vendor specific config. | OPTIONAL | -
<a name="topicConfigurationConfluentKeySubjectNameStrategy"></a>`confluent.key.subject.name.strategy` | string | The name of the schema lookup strategy for the message key. Vendor specific config. | OPTIONAL | Clients should default to the vendor default if not supplied.
<a name="topicConfigurationConfluentValueSchemaValidation"></a>`confluent.value.schema.validation` | boolean | It shows whether the schema validation for the message value is enabled. Vendor specific config. | OPTIONAL | -
<a name="topicConfigurationConfluentValueSubjectNameStrategy"></a>`confluent.value.subject.name.strategy` | string | The name of the schema lookup strategy for the message value. Vendor specific config. | OPTIONAL | Clients should default to the vendor default if not supplied.

This object MAY contain the properties defined above including optional additional properties.

Expand All @@ -101,10 +101,10 @@ topicConfiguration:
retention.bytes: 1000000000
delete.retention.ms: 86400000
max.message.bytes: 1048588
schema.key.validation.enabled: true
schema.key.lookup.strategy: "TopicNameStrategy"
schema.value.validation.enabled: true
schema.value.lookup.strategy: "TopicNameStrategy"
confluent.key.schema.validation: true
confluent.key.subject.name.strategy: "TopicNameStrategy"
confluent.value.schema.validation: true
confluent.value.subject.name.strategy: "TopicNameStrategy"
```

<a name="operation"></a>
Expand Down

0 comments on commit 820c410

Please sign in to comment.