Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: make linter happy
Signed-off-by: Samantha Coyle <[email protected]>
  • Loading branch information
sicoyle committed Aug 11, 2025
commit 61d9edcd894a953ccfd7a6ea2ca79114dbb11d77
38 changes: 24 additions & 14 deletions pubsub/rocketmq/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ metadata:
description: The RocketMQ name server domain.
example: "rocketmq.example.com"
- name: retries
type: integer
type: number
required: false
description: The number of retry attempts for sending messages.
example: 3
Expand Down Expand Up @@ -102,17 +102,17 @@ metadata:
example: false
default: false
- name: consumeMessageBatchMaxSize
type: integer
type: number
required: false
description: The maximum batch size for message consumption.
example: 10
- name: consumeConcurrentlyMaxSpan
type: integer
type: number
required: false
description: The maximum span for concurrent consumption.
example: 10
- name: maxReconsumeTimes
type: integer
type: number
required: false
description: The maximum number of reconsume times. -1 means 16 times.
example: 10000
Expand All @@ -123,49 +123,49 @@ metadata:
example: true
default: false
- name: consumeTimeout
type: integer
type: number
required: false
description: The consume timeout in minutes.
example: 10
- name: consumerPullTimeout
type: integer
type: number
required: false
description: The consumer pull timeout in milliseconds.
example: 30
default: 30
- name: pullInterval
type: integer
type: number
required: false
description: The pull interval in minutes.
example: 100
default: 100
- name: consumerBatchSize
type: integer
type: number
required: false
description: The consumer batch size.
example: 10
- name: pullBatchSize
type: integer
type: number
required: false
description: The pull batch size.
example: 10
- name: pullThresholdForQueue
type: integer
type: number
required: false
description: The pull threshold for queue.
example: 100
- name: pullThresholdForTopic
type: integer
type: number
required: false
description: The pull threshold for topic.
example: 100
- name: pullThresholdSizeForQueue
type: integer
type: number
required: false
description: The pull threshold size for queue.
example: 10
- name: pullThresholdSizeForTopic
type: integer
type: number
required: false
description: The pull threshold size for topic.
example: 10
Expand All @@ -175,7 +175,7 @@ metadata:
description: The content type for messages.
example: "json"
- name: sendTimeOutSec
type: integer
type: number
required: false
description: The send timeout in seconds.
example: 10
Expand All @@ -190,3 +190,13 @@ metadata:
required: false
description: The message properties to pass to the application (comma-separated).
example: "UNIQ_KEY,MSG_ID"
- name: groupName
type: string
required: false
description: The consumer group name (deprecated, use consumerGroup instead).
example: "dapr-consumer-group"
- name: sendTimeOut
type: number
required: false
description: The send timeout in nanoseconds (deprecated, use sendTimeOutSec instead).
example: 10000000000