71.2. 选项
Couchbase 组件没有选项。
Couchbase 端点使用 URI 语法进行配置:
couchbase:protocol:hostname:port
使用以下路径和查询参数:
71.2.1. 路径参数(3 参数):
名称 | 描述 | 默认值 | 类型 |
---|---|---|---|
protocol | 必需 使用的协议 | 字符串 | |
hostname | 必需 要使用的主机名 | 字符串 | |
端口 | 要使用的端口号 | 8091 | int |
71.2.2. 查询参数(47 参数):
名称 | 描述 | 默认值 | 类型 |
---|---|---|---|
bucket (common) | 要使用的存储桶 | 字符串 | |
key (common) | 要使用的密钥 | 字符串 | |
bridgeErrorHandler (consumer) | 允许将消费者桥接到 Camel 路由错误处理程序,这意味着当消费者试图选择传入消息或类似信息时发生异常,现在将作为消息处理并由路由 Error Handler 处理。默认情况下,使用者将使用 org.apache.camel.spi.ExceptionHandler 来处理例外情况,该处理程序将被记录在 WARN 或 ERROR 级别,并忽略。 | false | 布尔值 |
consumerProcessedStrategy (consumer) | 定义要使用的消费者流程策略 | none | 字符串 |
descending (consumer) | 定义此操作是否降序 | false | 布尔值 |
designDocumentName (consumer) | 要使用的设计文档名称 | Beer | 字符串 |
limit (consumer) | 要使用的输出限制 | -1 | int |
rangeEndKey (consumer) | 为 end 键定义一个范围 | 字符串 | |
rangeStartKey (consumer) | 为 start 键定义一个范围 | 字符串 | |
sendEmptyMessageWhenIdle (consumer) | 如果轮询使用者没有轮询任何文件,您可以启用此选项来发送空消息(无正文)。 | false | 布尔值 |
skip (consumer) | 定义要使用的跳过 | -1 | int |
viewName (consumer) | 要使用的视图名称 | brewery_beers | 字符串 |
exceptionHandler (consumer) | 要让使用者使用自定义例外处理程序:请注意,如果启用了 bridgeErrorHandler 选项,则此选项不使用。默认情况下,消费者将处理异常,其记录在 WARN 或 ERROR 级别中,并忽略。 | ExceptionHandler | |
exchangePattern (consumer) | 在消费者创建交换时设置交换模式。 | ExchangePattern | |
pollStrategy (consumer) | 可插拔 org.apache.camel.PollingConsumerPollingStrategy 允许您提供自定义实施来控制在轮询操作期间通常会发生错误处理,然后再创建交换并在 Camel 中路由。 | PollingConsumerPoll Strategy | |
autoStartIdForInserts (producer) | 定义在进行插入操作时是否希望自动启动 Id | false | 布尔值 |
operation (producer) | 要执行的操作 | CCB_PUT | 字符串 |
persistTo (producer) | 持久保留数据的位置 | 0 | int |
producerRetryAttempts (producer) | 定义重试尝试的数量 | 2 | int |
producerRetryPause (producer) | 定义不同尝试之间的重试暂停 | 5000 | int |
replicateTo (producer) | 复制数据的位置 | 0 | int |
startingIdForInsertsFrom (producer) | 定义我们进行插入操作的起始 Id | long | |
additionalHosts (advanced) | 其他主机 | 字符串 | |
maxReconnectDelay (advanced) | 在重新连接过程中定义最大延迟 | 30000 | long |
obsPollInterval (advanced) | 定义观察轮询间隔 | 400 | long |
obsTimeout (advanced) | 定义观察超时 | -1 | long |
opQueueMaxBlockTime (advanced) | 定义操作可在队列阻止中的最大时间 | 10000 | long |
opTimeOut (advanced) | 定义操作超时 | 2500 | long |
readBufferSize (advanced) | 定义缓冲区大小 | 16384 | int |
shouldOptimize (advanced) | 定义是否要在可能的情况下使用优化 | false | 布尔值 |
同步 (advanced) | 设置是否应严格使用同步处理,或者 Camel 允许使用异步处理(如果受支持)。 | false | 布尔值 |
timeoutExceptionThreshold (advanced) | 定义抛出超时例外的阈值 | 998 | int |
backoffErrorThreshold (scheduler) | 在 backoffMultipler 应该 kick-in 之前发生的后续错误轮询(因为某些错误)的数量。 | int | |
backoffIdleThreshold (scheduler) | 在 backoffMultipler 应该 kick-in 之前应该发生的后续空闲轮询数量。 | int | |
backoffMultiplier (scheduler) | 如果一行中有很多后续空闲/errors,则让调度的轮询消费者避退。然后,倍数是在下一次实际尝试再次发生前跳过的轮询数量。当使用这个选项时,还必须配置 backoffIdleThreshold 和/或 backoffErrorThreshold。 | int | |
delay (scheduler) | 下一次轮询前的时间(毫秒)。您还可以使用单位来指定时间值,如 60s (60 秒)、5m30s (5 分钟和 30 秒)和 1h (1 小时)。 | 500 | long |
greedy (scheduler) | 如果启用了 greedy,如果上一个运行轮询 1 或更多消息,则 ScheduledPollConsumer 将立即运行。 | false | 布尔值 |
initialDelay (scheduler) | 第一次轮询开始前的毫秒。您还可以使用单位来指定时间值,如 60s (60 秒)、5m30s (5 分钟和 30 秒)和 1h (1 小时)。 | 1000 | long |
runLoggingLevel (scheduler) | 消费者在轮询时记录 start/complete log 行。这个选项允许您为其配置日志级别。 | TRACE | LoggingLevel |
scheduledExecutorService (scheduler) | 允许配置用于消费者的自定义/共享线程池。默认情况下,每个使用者都有自己的单线程线程池。 | ScheduledExecutor Service | |
scheduler (scheduler) | 使用 camel-spring 或 camel-quartz2 组件的 cron 调度程序 | none | ScheduledPollConsumer Scheduler |
schedulerProperties (scheduler) | 在使用自定义调度程序或任何基于 Spring 的调度程序时配置附加属性。 | Map | |
startScheduler (scheduler) | 调度程序是否应自动启动。 | true | 布尔值 |
timeUnit (scheduler) | initialDelay 和 delay 选项的时间单位。 | MILLISECONDS | TimeUnit |
useFixedDelay (scheduler) | 控制是否使用固定延迟或固定率。详情请参阅 JDK 中的 ScheduledExecutorService。 | true | 布尔值 |
password (security) | 要使用的密码 | 字符串 | |
用户名 (安全性) | 要使用的用户名 | 字符串 |