【备忘录】kafka常用命令维护

kafka指令备忘录

单个Topic扩容
sh bin/kafka-topics.sh --bootstrap-server broker_host:port --alter --topic test_create_topic1 --partitions 4

批量扩容

将所有正则表达式匹配到的Topic分区扩容到4个
sh bin/kafka-topics.sh --topic “.*?” --bootstrap-server 172.23.248.85:9092 --alter --partitions 4

查询单个Topic
sh bin/kafka-topics.sh --topic test --bootstrap-server xxxx:9092 --describe --exclude-internal

批量查询Topic
sh bin/kafka-topics.sh --topic “.*?” --bootstrap-server xxxx:9092 --describe --exclude-internal

查询所有Topic列表
sh bin/kafka-topics.sh --bootstrap-server xxxxxx:9092 --list --exclude-internal

查询匹配Topic列表(正则表达式)

查询test_create_开头的所有Topic列表
sh bin/kafka-topics.sh --bootstrap-server xxxxxx:9092 --list --exclude-internal --topic “test_create_.*”

查询单个Topic配置(只列举动态配置)
sh bin/kafka-configs.sh --describe --bootstrap-server xxxxx:9092 --topic test_create_topic 或者 sh bin/kafka-configs.sh --describe --bootstrap-server 172.23.248.85:9092 --entity-type topics --entity-name test_create_topic

查询所有Topic配置(包括内部Topic)(只列举动态配置)
sh bin/kafka-configs.sh --describe --bootstrap-server 172.23.248.85:9092 --entity-type topics

查询kafka版本信息
sh bin/kafka-configs.sh --describe --bootstrap-server xxxx:9092 --version

opic添加/修改动态配置
–add-config
sh bin/kafka-configs.sh --bootstrap-server xxxxx:9092 --alter --entity-type topics --entity-name test_create_topic1 --add-config file.delete.delay.ms=222222,retention.ms=999999

–delete-config
sh bin/kafka-configs.sh --bootstrap-server xxxxx:9092 --alter --entity-type topics --entity-name test_create_topic1 --delete-config file.delete.delay.ms,retention.ms

添加/删除配置同时执行
sh bin/kafka-configs.sh --bootstrap-server xxxxx:9092 --alter --entity-type brokers --entity-default --add-config log.segment.bytes=788888888 --delete-config log.retention.ms

配置默认
–entity-default
sh bin/kafka-configs.sh --bootstrap-server xxxxx:9090 --alter --entity-type brokers --entity-default --add-config log.segment.bytes=88888888

生产无key消息
bin/kafka-console-producer.sh --bootstrap-server localhost:9092 --topic test --producer.config config/producer.properties

生产有key消息加上属性
–property parse.key=true
bin/kafka-console-producer.sh --bootstrap-server localhost:9092 --topic test --producer.config config/producer.properties --property parse.key=true

新客户端从头消费
–from-beginning
sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning

正则表达式匹配topic进行消费
–whitelist
消费所有的topic
sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --whitelist ‘.*’

消费所有的topic
sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --whitelist ‘.*’ --from-beginning

消费指定topic并显示key
–property print.key=true
sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --property print.key=true

指定分区消费
–partition
指定起始偏移量消费–offset
sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --partition 0 --offset 100

给客户端命名
–group
sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --group test-group

添加客户端属性
–consumer.config
跟–consumer-property 一样的性质,都是添加客户端的属性,–consumer-property 的优先级大于 --consumer.config
sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --consumer.config config/consumer.properties

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/738253.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

钡铼技术R40工业路由器4G WiFi一体,适用于各类工业场景

钡铼技术R40工业路由器是一款集4G网络连接和WiFi功能于一体的先进设备,旨在满足各类工业场景对稳定、高速网络连接的需求。作为一家致力于工业互联网解决方案的领先厂商,钡铼技术致力于为工业企业提供可靠的网络设备,以支持其数字化转型和智能…

【AIGC调研系列】copilot在自动化测试脚本中的实际应用效果

GitHub Copilot在自动化测试脚本中的实际应用效果是多方面的。首先,Copilot能够帮助开发者快速编写测试用例代码,并简化测试流程[5]。这表明Copilot在自动化测试方面具有一定的优势,能够提高开发效率和测试质量。 然而,也有证据指…

HTML5 CSS3常见新特性

HTML新特性 新增特性&#xff1a; 语义化标签&#xff1a;&#xff0c;如<header>、<footer>、<nav>、<article>、<section>等&#xff0c;能够更准确地描述网页结构视频和音频&#xff1a;添加了<video>和<audio>标签&#xff0c…

OSI七层模型TCP四层模型横向对比

OSI 理论模型&#xff08;Open Systems Interconnection Model&#xff09;和TCP/IP模型 七层每一层对应英文 应用层&#xff08;Application Layer&#xff09; 表示层&#xff08;Presentation Layer&#xff09; 会话层&#xff08;Session Layer&#xff09; 传输层&#x…

Java实现递归删除菜单和删除目录及目录下所有文件

目录 一、什么是递归&#xff1f; 二、示例分析 一、什么是递归&#xff1f; 递归调用是一种特殊的嵌套调用&#xff0c;是某个函数调用自己或者是调用其他函数后再次调用自己的&#xff0c;只要函数之间互相调用能产生循环的则一定是递归调用&#xff0c;递归调用一种解决方…

蓝牙通讯——连接你我的无线魔法

引言&#xff1a; 在当今科技高速发展的时代&#xff0c;无线通讯技术已成为我们生活中不可或缺的一部分。其中&#xff0c;蓝牙通讯作为一种广泛应用的无线通讯技术&#xff0c;以其便捷、高效的特点&#xff0c;深入到了我们的日常生活与工作之中。那么&#xff0c;蓝牙通讯究…

Spring Data访问Elasticsearch(一)----Elasticsearch客户端

Spring Data访问Elasticsearch&#xff08;一&#xff09;----Elasticsearch客户端 一、命令式Rest客户端二、反应式&#xff08;Reactive&#xff09;Rest客户端三、客户端配置3.1 客户端配置回调3.1.1 底层Elasticsearch RestClient的配置:3.1.2 底层Elasticsearch RestClien…

掌握Go语言:精通Go语言运算符,解锁编程新境界(11)

算术运算符用于执行基本的数学运算&#xff0c;如加法、减法、乘法和除法等。在Go语言中&#xff0c;我们可以轻松使用这些运算符来进行数值计算&#xff0c;从而实现各种复杂的逻辑操作。让我们一起来深入了解各种算术运算符的使用方法及其在实际开发中的应用。 算术运算符 …

FFmpeg将视频包AVPacket通过视频流方式写入本地文件

1.写视频头 void writeVideoHeader(const char* videoFileName){int r avformat_alloc_output_context2(&pFormatCtx, nullptr, nullptr,videoFileName);if(r < 0){qDebug()<<"Error: avformat_alloc_output_context2: "<<av_err2str(r);return;…

Python 字符串引号 题解

Python 字符串引号 题解 预备知识 在 Python 中&#xff0c;可以使用引号 &#xff0c;" &#xff0c; 和 """来创建字符串。以下都是合法的字符串&#xff1a; aa aa bb "bb" cc cc dd """dd"""配对的引号不…

CloudSecOps实践之路:云安全运营全面解析

云计算已经获得了大量企业用户的青睐&#xff0c;并成为其数字化转型发展的基础&#xff0c;但是也面临着各种各样的风险&#xff0c;从勒索软件到供应链攻击&#xff0c;再到云内部威胁和配置错误&#xff0c;各种云安全事件层出不穷。随着更多的企业将其业务应用迁移至云端&a…

02_electron快速建立项目

一、安装 yarn 在此之前可以先安装 git&#xff1a;Git - Downloads (git-scm.com) 下面就是 yarn 安装的代码&#xff0c;在终端输入即可。 npm install --global yarn 检查是否安装成功&#xff1a; yarn --version 二、快速建立一个electron项目 其实在Getting Started - …

MYSQL Unknown column ‘appreciation.latitude‘ in ‘where clause‘

问题 笔者编写mysql语句&#xff0c;执行报错 详细问题 笔者sql代码 SELECT ap.*, su.username, wh.wheat_name FROM appreciation ap LEFT JOIN sys_user su ON su.id ap.user_id LEFT JOIN wheat wh ON wh.id ap.crop_id WHERE appreciation.latitude 1报错信息 >…

LeetCode707:设计链表

题目描述 实现 MyLinkedList 类&#xff1a; MyLinkedList() 初始化 MyLinkedList 对象。 int get(int index) 获取链表中下标为 index 的节点的值。如果下标无效&#xff0c;则返回 -1 。 void addAtHead(int val) 将一个值为 val 的节点插入到链表中第一个元素之前。在插入完…

GO语言-切片底层探索(下)

目录 切片的底层数据结构 扩容机制 总结&#xff1a; 练习验证代码 这是切片的底层探索下篇&#xff0c;上篇地址请见&#xff1a;GO语言-切片底层探索&#xff08;上&#xff09; 在上篇我们讲解了切片的两个重要实现或者说是两个特征 切片是引用类型&#xff0c;会进行…

java关键字是什么?关键字有哪些?什么是常量?

1、关键字 &#xff08;1&#xff09;关键字概述&#xff1a;被java语言赋予了特定含义的单词。 &#xff08;2&#xff09;关键字特点&#xff1a; 关键字的字母全部小写&#xff1b;常用的代码编辑器&#xff0c;针对关键字有特殊的颜色标记&#xff0c;非常直观。 以IDE…

【QT+QGIS跨平台编译】之七十一:【QGIS_Analysis跨平台编译】—【qgsrastercalclexer.cpp生成】

文章目录 一、Flex二、生成来源三、构建过程一、Flex Flex (fast lexical analyser generator) 是 Lex 的另一个替代品。它经常和自由软件 Bison 语法分析器生成器 一起使用。Flex 最初由 Vern Paxson 于 1987 年用 C 语言写成。 “flex 是一个生成扫描器的工具,能够识别文本中…

机器学习之分类回归模型(决策数、随机森林)

回归分析 回归分析属于监督学习方法的一种&#xff0c;主要用于预测连续型目标变量&#xff0c;可以预测、计算趋势以及确定变量之间的关系等。 Regession Evaluation Metrics 以下是一些最流行的回归评估指标: 平均绝对误差(MAE):目标变量的预测值与实际值之间的平均绝对差…

在 windows 下安装并调试 CMake

一、前言 CMake是一个跨平台的开源工具&#xff0c;用于管理软件项目的构建过程。它不直接构建软件&#xff0c;而是生成用于特定平台或编译器的构建文件&#xff08;如Makefile或Visual Studio项目文件&#xff09;&#xff0c;然后利用这些文件来实际构建软件。 二、初次尝…

微服务架构 | 架构演进

INDEX 1 架构演进 1 架构演进 standalone 就部署一份 可用性问题&#xff1a;只有一个点&#xff0c;单点故障 全挂流量瓶颈&#xff1a; 只有一个点&#xff0c;可以支持的流量有限性能越高的服务器价格会非线性增加 功能耦合&#xff1a;协同开发困难&#xff0c;各自改一…