Skip to content

Commit 0a08b05

Browse files
FinVamp1ggailey777
andauthored
Update articles/azure-functions/functions-bindings-kafka-output.md
Co-authored-by: Glenn Gailey <[email protected]>
1 parent bb02965 commit 0a08b05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-bindings-kafka-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ The `KafkaOutput` annotation allows you to create a function that writes to a sp
309309
| **brokerList** | (Required) The list of Kafka brokers to which the output is sent. See [Connections](#connections) for more information. |
310310
| **topic** | (Required) The topic to which the output is sent. |
311311
| **dataType** | Defines how Functions handles the parameter value. By default, the value is obtained as a string and Functions tries to deserialize the string to actual plain-old Java object (POJO). When `string`, the input is treated as just a string. When `binary`, the message is received as binary data, and Functions tries to deserialize it to an actual parameter type byte[]. |
312-
| **avroSchema** | (Optional) Schema of a generic record when using the Avro protocol. ***Not supported for Java*** </br> [Missing avroschema annotation with the Kafka Output binding for Java)](https://github.com/Azure/azure-functions-java-library/issues/198) |
312+
| **avroSchema** | (Optional) Schema of a generic record when using the Avro protocol. ([Currently not supported for Java](https://github.com/Azure/azure-functions-java-library/issues/198).) |
313313
| **maxMessageBytes** | (Optional) The maximum size of the output message being sent (in MB), with a default value of `1`. |
314314
| **batchSize** | (Optional) Maximum number of messages batched in a single message set, with a default value of `10000`. |
315315
| **enableIdempotence** | (Optional) When set to `true`, guarantees that messages are successfully produced exactly once and in the original produce order, with a default value of `false`|

0 commit comments

Comments
 (0)