Coinbase OA 面试真题解析:Log Management System 技术架构设计

16次阅读
没有评论

Question Prompt

Design the technical architecture of a log management system for a microservices-based application, defining the components of the system, their interactions, and the flow of data within the system.

  • [execution time limit] 4 seconds (go)
  • [memory limit] 1 GB

这道题考察的是系统设计能力,核心是为一个基于微服务的应用搭建日志管理架构。解题时需要从日志采集、传输、聚合、存储、检索和告警几个环节入手,说明各组件如何协同工作,以及日志在系统中的流转路径。通常会涉及消息队列、日志代理、集中式存储和查询服务等数据结构与组件设计,同时还要考虑高吞吐、低延迟、可扩展和容错等工程约束。

正文完
 0