You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/09/22 08:17:21 UTC

[GitHub] [camel-k-runtime] davsclaus opened a new issue #490: kamelet-sink component

davsclaus opened a new issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490


   Wonder if we can think of using something else than direct:route-id in kamelets when its a sink
   See bottom at: https://camel.apache.org/camel-k/latest/kamelets/kamelets.html
   
   Should we introduce a kamelet-sink endpoint or something? (can facade direct)
   
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] lburgazzoli closed issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
lburgazzoli closed issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490


   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] lburgazzoli edited a comment on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
lburgazzoli edited a comment on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698241419


   I was looking at implementing this but with camel 3.x you cannot use any more the scheme only so as example:
   
   ```yaml
   from:
     ...
     steps:
       - to: "kamelet-sink"
   ```
   
   Won't work and would fail the startup.
   
   It would be possible to write something like `kamelet-sink:foo` but then the path param `foo` won't have any real meaning which could be confusing so one should write `kamelet-sink:{{routeId}}` ?
   
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] lburgazzoli commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
lburgazzoli commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698241419






----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] nicolaferraro commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
nicolaferraro commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698247717


   We can force usage of that exact syntax, without free path.


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] lburgazzoli commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
lburgazzoli commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698241419


   I was looking at implementing this but with camel 3.x you cannot use any more the scheme only so as example:
   
   ```yaml
   from:
     ...
     steps:
       - to: "kamelet-sink"
   ```
   
   Won't work.
   
   It would be possible to write something like `kamelet-sink:foo` but then the path param `foo` won't have any real meaning which could be confusing so one should write `kamelet-sink:{{routeId}}` ?
   
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] nicolaferraro commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
nicolaferraro commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698247233


   I remember we talked about this ~2 years ago... and the component was called like "template:placeholder".


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] nicolaferraro commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
nicolaferraro commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698247233






----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] davsclaus commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
davsclaus commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698269424


   you can also use the existing kamelet component let let "sink" be reserved for this use-case
   
       to: "kamelet:sink"
   
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] lburgazzoli edited a comment on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
lburgazzoli edited a comment on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698241419


   I was looking at implementing this but with camel 3.x you cannot use any more the scheme only so as example:
   
   ```yaml
   from:
     ...
     steps:
       - to: "kamelet-sink"
   ```
   
   Won't work and would fail the startup.
   
   It would be possible to write something like `kamelet-sink:foo` but then the path param `foo` won't have any real meaning which could be confusing so one should write `kamelet-sink:{{routeId}}` ?
   
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] lburgazzoli commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
lburgazzoli commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698300471


   interesting


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-k-runtime] davsclaus commented on issue #490: kamelet-sink component

Posted by GitBox <gi...@apache.org>.
davsclaus commented on issue #490:
URL: https://github.com/apache/camel-k-runtime/issues/490#issuecomment-698269424


   you can also use the existing kamelet component let let "sink" be reserved for this use-case
   
       to: "kamelet:sink"
   
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org