You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flink-connector-opensearch-e2e-tests/src/main/java/org/apache/flink/streaming/tests/OpensearchAsyncSinkExample.java
Copy file name to clipboardExpand all lines: flink-connector-opensearch/src/main/java/org/apache/flink/connector/opensearch/sink/OpensearchAsyncSink.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -54,13 +54,13 @@ public class OpensearchAsyncSink<InputT> extends AsyncSinkBase<InputT, DocSerdeR
54
54
* Constructor creating an Opensearch async sink.
55
55
*
56
56
* @param maxBatchSize the maximum size of a batch of entries that may be sent
57
-
* @param maxInFlightRequests he maximum number of in flight requests that may exist, if any
57
+
* @param maxInFlightRequests the maximum number of in flight requests that may exist, if any
58
58
* more in flight requests need to be initiated once the maximum has been reached, then it
59
59
* will be blocked until some have completed
60
60
* @param maxBufferedRequests the maximum number of elements held in the buffer, requests to add
61
61
* elements will be blocked while the number of elements in the buffer is at the maximum
62
-
* @param maxBatchSizeInBytes the maximum size of a batch of entries that may be sent to KDS
63
-
* measured in bytes
62
+
* @param maxBatchSizeInBytes the maximum size of a batch of entries that may be sent to
63
+
* OpenSearch measured in bytes
64
64
* @param maxTimeInBufferMS the maximum amount of time an entry is allowed to live in the
65
65
* buffer, if any element reaches this age, the entire buffer will be flushed immediately
66
66
* @param maxRecordSizeInBytes the maximum size of a record the sink will accept into the
Copy file name to clipboardExpand all lines: flink-connector-opensearch/src/main/java/org/apache/flink/connector/opensearch/sink/OpensearchAsyncSinkBuilder.java
Copy file name to clipboardExpand all lines: flink-connector-opensearch/src/test/java/org/apache/flink/connector/opensearch/sink/OpensearchAsyncSinkBuilderTest.java
0 commit comments