search
HomeBackend DevelopmentGolangIs it possible to create a service in Go that both consumes a message stream (from Kafka) and reads REST API requests?

是否可以在 Go 中创建一个既使用消息流(来自 Kafka)又读取 REST API 请求的服务?

Question content

I recently read an article "Sharing data between large-scale microservices"

This picture is about asynchronous connections.

If I remember correctly, the Order page in this picture The service appears to be able to read the message stream from Kafka, and also read REST API requests from the front-end application.

So, I'm wondering if it's possible to write a service that can do both tasks at the same time:

  • Read the message stream from Kafka
  • Read REST API request

Only in 1 service, such as in Go.

Is this a good idea?

Workaround

Yes, you can definitely write a Go service that consumes from Kafka and exposes a REST endpoint. However, this is not an ideal design decision.

The Kafka-based streaming system allows asynchronous communication between producers and consumers. However, REST API-based systems communicate synchronously between the caller and the callee.

The availability guarantees are different between synchronous and synchronous mode communication. A system based on Kafka Streams will have different availability guarantees than a REST API. In a streaming system, we focus on message processing throughput, while in end-to-end synchronous communication, latency is the main concern (you don't want the caller to wait for a long time to get the result).

If we put these two types of systems in one service, it will be difficult to understand the availability of the service. Additionally, an asynchronous part or a synchronous part of a service may play into a noisy neighbor on the other side, making the service unavailable.

Therefore, in general, it is recommended to treat REST-based APIs and Kafka streams as two independent services.

The above is the detailed content of Is it possible to create a service in Go that both consumes a message stream (from Kafka) and reads REST API requests?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
mongodb数据库的优势有哪些mongodb数据库的优势有哪些Apr 07, 2024 pm 05:21 PM

MongoDB 数据库以其灵活、可扩展和高性能而闻名。它的优势包括:文档数据模型,允许以灵活和非结构化的方式存储数据。水平可扩展性,可通过分片扩展到多个服务器。查询灵活性,支持复杂的查询和聚合操作。数据复制和容错,确保数据的冗余和高可用性。JSON 支持,便于与前端应用程序集成。高性能,即使处理大量数据也能实现快速响应。开源,可定制且免费使用。

vue是前端还是后端vue是前端还是后端Apr 02, 2024 am 12:15 AM

Vue 是一款用于构建用户界面的前端 JavaScript 框架,主要关注客户端代码开发,其特点包括:1. 组件化:提高代码可维护性和重用性;2. 响应式数据绑定:UI 自动更新;3. 虚拟 DOM:优化渲染性能;4. 状态管理:管理应用程序共享状态。Vue 广泛应用于构建单页应用程序、移动应用程序、桌面应用程序和 Web 组件。

nodejs可以写前端吗nodejs可以写前端吗Apr 21, 2024 am 05:00 AM

是的,Node.js可用于前端开发,主要优势包括高性能、丰富的生态系统和跨平台兼容性。需要考虑的注意事项有学习曲线、工具支持和社区规模较小。

怎么用webstorm启动项目怎么用webstorm启动项目Apr 08, 2024 pm 02:03 PM

可以使用 WebStorm 启动项目的步骤如下:打开 WebStorm IDE,打开或创建项目;右键单击项目文件并选择“运行”;在“Run/Debug Configuration”窗口中,选择要用于启动项目的启动配置;配置启动配置(可选);单击“运行”按钮以启动项目;若需要,可以使用 WebStorm 的调试工具对项目进行调试。

vue在前端开发中有什么作用vue在前端开发中有什么作用Apr 06, 2024 am 12:39 AM

Vue.js 是一个渐进式 JavaScript 框架,主要用于简化前端开发流程。其作用包括:声明式模板语法,提高可读性;响应式数据绑定,自动同步界面和数据;组件化开发,提升可维护性;状态管理(Vuex),简化状态管理;路由(Vue Router),管理单页应用;丰富工具和生态系统,加速开发。

js和vue的关系js和vue的关系Mar 11, 2024 pm 05:21 PM

js和vue的关系:1、JS作为Web开发基石;2、Vue.js作为前端框架的崛起;3、JS与Vue的互补关系;4、JS与Vue的实践应用。

NEXTAUTH_SECRET 变量与用于生成 JWT 令牌的后端机密相同吗?NEXTAUTH_SECRET 变量与用于生成 JWT 令牌的后端机密相同吗?Feb 08, 2024 pm 11:09 PM

我正在使用NextJS编写前端应用程序,并使用nextauth进行身份验证(电子邮件、密码登录)。我的后端是用GoLang编写的不同代码库,因此当用户登录时,它将向Golang后端端点发送请求,并返回JWT令牌,该令牌生成如下所示:config:=config.GetConfig()atClaims:=jwt.MapClaims{}atClaims["authorized"]=trueatClaims["id"]=userIdatClaims["email"

React持久化存储指南:如何在前端应用中实现数据持久化功能React持久化存储指南:如何在前端应用中实现数据持久化功能Sep 26, 2023 pm 03:33 PM

React持久化存储指南:如何在前端应用中实现数据持久化功能引言:在现代的前端应用中,数据持久化是一个重要的功能。它可以帮助我们保存用户的数据,以便在下一次访问时重新加载。本篇文章将介绍如何在React应用中实现数据持久化功能,并提供具体的代码示例帮助读者更好地理解。一、使用localStorage进行数据持久化在React应用中,我们可以使用localSt

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.