eolivelli commented on a change in pull request #11602:
URL: https://github.com/apache/pulsar/pull/11602#discussion_r686760908
##########
File path: site2/docs/io-elasticsearch-sink.md
##########
@@ -16,11 +48,45 @@ The configuration of the ElasticSearch sink connector has
the following properti
|------|----------|----------|---------|-------------|
| `elasticSearchUrl` | String| true |" " (empty string)| The URL of elastic
search cluster to which the connector connects. |
| `indexName` | String| true |" " (empty string)| The index name to which the
connector writes messages. |
+| `schemaEnable` | Boolean | false | false | Turn on the Schema Aware mode. |
+| `createIndexIfNeeded` | Boolean | false | false | Manage index if missing. |
+| `maxRetries` | Integer | false | 1 | The maximum number of retries for
elasticsearch requests. Use -1 to disable it. |
+| `retryBackoffInMs` | Integer | false | 100 | The base time in milliseconds
to wait when retrying an elasticsearch request. |
+| `maxRetryTimeInSec` | Integer| false | 86400 | The maximum retry time
interval in seconds for retrying an elasticsearch request.. |
+| `bulkEnabled` | Boolean | false | false | Enable the elasticsearch bulk
processor to flush write requests based on the number or size of requests, or
after a given period. |
+| `bulkActions` | Integer | false | 1000 | The maximum number of actions per
elasticsearch bulk request. Use -1 to disable it. |
+| `bulkSizeInMb` | Integer | false |5 | The maximum size in megabytes of
elasticsearch bulk requests.Use -1 to disable it. |
Review comment:
done
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]