-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
299b5d9
commit 136d55b
Showing
6 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
posts/2024-05-21_an_apache_camel_alike_routing_engine_written_in_gom_part_1/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Go on Luca Burgazzoli</title><link>https://lburgazzoli.github.io/tags/go/</link><description>Recent content in Go on Luca Burgazzoli</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Tue, 21 May 2024 00:00:00 +0000</lastBuildDate><atom:link href="https://lburgazzoli.github.io/tags/go/index.xml" rel="self" type="application/rss+xml"/><item><title>Apache Camel alike routing engine written in GoLang pt. 1'</title><link>https://lburgazzoli.github.io/posts/2024-05-21_an_apache_camel_alike_routing_engine_written_in_gom_part_1/</link><pubDate>Tue, 21 May 2024 00:00:00 +0000</pubDate><guid>https://lburgazzoli.github.io/posts/2024-05-21_an_apache_camel_alike_routing_engine_written_in_gom_part_1/</guid><description>I recently had some time to continue exploring how to combine some of the technologies I had on my radar for quite a while and I finally got something that - even if it is just a proof of concept / experiment - can finally be shown. | ||
What we will go through in this post is: | ||
Apache Camel alike routing engine written in GoLang Apache Camel K alike controller Embedded WebAssembly engine for extensible and safe message routing and transformation Actors Model OCI Artifacts Notes: the result of this work is by no mean expected to land in the official Apache Camel project or in any Red Hat Integration product Background To get started, let’s have a basic understanding of the components/technologies we are going to mention in this post:</description></item></channel></rss> | ||
Apache Camel alike routing engine written in GoLang Embedded WebAssembly engine for extensible and safe message routing and transformation Actors Model OCI Artifacts Notes: the result of this work is by no mean expected to land in the official Apache Camel project or in any Red Hat Integration product Background To get started, let’s have a basic understanding of the components/technologies we are going to mention in this post:</description></item></channel></rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Integration on Luca Burgazzoli</title><link>https://lburgazzoli.github.io/tags/integration/</link><description>Recent content in Integration on Luca Burgazzoli</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Tue, 21 May 2024 00:00:00 +0000</lastBuildDate><atom:link href="https://lburgazzoli.github.io/tags/integration/index.xml" rel="self" type="application/rss+xml"/><item><title>Apache Camel alike routing engine written in GoLang pt. 1'</title><link>https://lburgazzoli.github.io/posts/2024-05-21_an_apache_camel_alike_routing_engine_written_in_gom_part_1/</link><pubDate>Tue, 21 May 2024 00:00:00 +0000</pubDate><guid>https://lburgazzoli.github.io/posts/2024-05-21_an_apache_camel_alike_routing_engine_written_in_gom_part_1/</guid><description>I recently had some time to continue exploring how to combine some of the technologies I had on my radar for quite a while and I finally got something that - even if it is just a proof of concept / experiment - can finally be shown. | ||
What we will go through in this post is: | ||
Apache Camel alike routing engine written in GoLang Apache Camel K alike controller Embedded WebAssembly engine for extensible and safe message routing and transformation Actors Model OCI Artifacts Notes: the result of this work is by no mean expected to land in the official Apache Camel project or in any Red Hat Integration product Background To get started, let’s have a basic understanding of the components/technologies we are going to mention in this post:</description></item><item><title>Apache Kafka Connect meets Wasm - Part 1</title><link>https://lburgazzoli.github.io/posts/2024-02-01_apache_kafka_connect_meets_wasm_part_1/</link><pubDate>Thu, 01 Feb 2024 00:00:00 +0000</pubDate><guid>https://lburgazzoli.github.io/posts/2024-02-01_apache_kafka_connect_meets_wasm_part_1/</guid><description>I recently wrote a blog post about adding support for Wasm in Apache Camel with the goal to support WebAssembly as a means to provide custom processing and transformation logic within Apache Camel. | ||
Apache Camel alike routing engine written in GoLang Embedded WebAssembly engine for extensible and safe message routing and transformation Actors Model OCI Artifacts Notes: the result of this work is by no mean expected to land in the official Apache Camel project or in any Red Hat Integration product Background To get started, let’s have a basic understanding of the components/technologies we are going to mention in this post:</description></item><item><title>Apache Kafka Connect meets Wasm - Part 1</title><link>https://lburgazzoli.github.io/posts/2024-02-01_apache_kafka_connect_meets_wasm_part_1/</link><pubDate>Thu, 01 Feb 2024 00:00:00 +0000</pubDate><guid>https://lburgazzoli.github.io/posts/2024-02-01_apache_kafka_connect_meets_wasm_part_1/</guid><description>I recently wrote a blog post about adding support for Wasm in Apache Camel with the goal to support WebAssembly as a means to provide custom processing and transformation logic within Apache Camel. | ||
In this post I&rsquo;m going to experiment a little bit about doing the same but for Apache Kafka Connect. | ||
Background To get started, let’s have a basic understanding of the components/technologies we are going to mention in this post:</description></item></channel></rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters