This is an automated email from the ASF dual-hosted git repository.
oscerd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
The following commit(s) were added to refs/heads/main by this push:
new 00a93f79e Regen for commit 2714beb62ed0a3626488d2cc056ce2bad13eef3e
(#3010)
00a93f79e is described below
commit 00a93f79e9f700d0057824af58377fc1303542bc
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 7 12:35:33 2026 +0200
Regen for commit 2714beb62ed0a3626488d2cc056ce2bad13eef3e (#3010)
Signed-off-by: GitHub <[email protected]>
Co-authored-by: oscerd <[email protected]>
---
.../src/main/resources/kamelets/couchbase-source.kamelet.yaml | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git
a/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml
b/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml
index 8a80f28f6..c91fb9e31 100644
---
a/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml
+++
b/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml
@@ -76,9 +76,13 @@ spec:
type: string
statement:
title: N1QL Statement
- description: The N1QL query to run against the bucket on each poll.
Used unless useView is true.
+ description: >-
+ The N1QL query to run against the bucket on each poll. Used unless
useView is true.
+ The query runs in the bucket scope, so the keyspace is the
collection - use _default
+ for the default collection rather than the bucket name. It must also
alias the document
+ id as __id, because rows without that field are skipped.
type: string
- example: "SELECT * FROM `travel-sample` LIMIT 10"
+ example: "SELECT META().id AS __id, * FROM _default"
useView:
title: Use View
description: Poll a MapReduce view instead of running the N1QL
statement.