当前位置: 首页 > news >正文

网络广告网站怎么做网站分析培训班

网络广告网站怎么做,网站分析培训班,网站功能模块清单,香精香料网文章目录 1、消费者组偏移量重置1.1、列出所有的消费者组1.2、查看 my_group1 组的详细信息1.3、获取 kafka-consumer-groups.sh 的帮助信息1.4、 偏移量重置1.5、再次查看 my_group1 组的详细信息 1、消费者组偏移量重置 1.1、列出所有的消费者组 [rootlocalhost ~]# kafka-… 文章目录 1、消费者组偏移量重置1.1、列出所有的消费者组1.2、查看 my_group1 组的详细信息1.3、获取 kafka-consumer-groups.sh 的帮助信息1.4、 偏移量重置1.5、再次查看 my_group1 组的详细信息 1、消费者组偏移量重置 1.1、列出所有的消费者组 [rootlocalhost ~]# kafka-consumer-groups.sh --bootstrap-server 192.168.74.148:9092 --list my_group2 my_group1 1.2、查看 my_group1 组的详细信息 [rootlocalhost ~]# kafka-consumer-groups.sh --bootstrap-server 192.168.74.148:9092 --group my_group1 --describeGROUP TOPIC PARTITION CURRENT-OFFSET LOG-END-OFFSET LAG CONSUMER-ID HOST CLIENT-ID my_group1 my_topic1 1 1 1 0 consumer-my_group1-1-c2ff5a19-af5c-47fc-9ad9-d6028844f86c /192.168.74.148 consumer-my_group1-1 my_group1 my_topic1 2 3 3 0 consumer-my_group1-1-c6a31cdb-c924-49bb-99da-cf45ffdbefb6 /192.168.74.148 consumer-my_group1-1 my_group1 my_topic1 0 2 2 0 consumer-my_group1-1-19852a4a-9a4e-4b41-b605-0a78530d0cd8 /192.168.74.148 consumer-my_group1-11.3、获取 kafka-consumer-groups.sh 的帮助信息 [rootlocalhost ~]# kafka-consumer-groups.sh --help Missing required argument [bootstrap-server] Option Description ------ ----------- --all-groups Apply to all consumer groups. --all-topics Consider all topics assigned to a group in the reset-offsets process. --bootstrap-server String: server to REQUIRED: The server(s) to connect to. connect to --by-duration String: duration Reset offsets to offset by duration from current timestamp. Format: PnDTnHnMnS --command-config String: command Property file containing configs to be config property file passed to Admin Client and Consumer. --delete Pass in groups to delete topic partition offsets and ownership information over the entire consumer group. For instance --group g1 -- group g2 --delete-offsets Delete offsets of consumer group. Supports one consumer group at the time, and multiple topics. --describe Describe consumer group and list offset lag (number of messages not yet processed) related to given group. --dry-run Only show results without executing changes on Consumer Groups. Supported operations: reset-offsets. --execute Execute operation. Supported operations: reset-offsets. --export Export operation execution to a CSV file. Supported operations: reset- offsets. --from-file String: path to CSV file Reset offsets to values defined in CSV file. --group String: consumer group The consumer group we wish to act on. --help Print usage information. --list List all consumer groups. --members Describe members of the group. This option may be used with --describe and --bootstrap-server options only. Example: --bootstrap-server localhost: 9092 --describe --group group1 -- members --offsets Describe the group and list all topic partitions in the group along with their offset lag. This is the default sub-action of and may be used with --describe and -- bootstrap-server options only. Example: --bootstrap-server localhost: 9092 --describe --group group1 -- offsets --reset-offsets Reset offsets of consumer group. Supports one consumer group at the time, and instances should be inactive Has 2 execution options: --dry-run (the default) to plan which offsets to reset, and --execute to update the offsets. Additionally, the -- export option is used to export the results to a CSV format. You must choose one of the following reset specifications: --to-datetime, --by-period, --to-earliest, --to- latest, --shift-by, --from-file, -- to-current. To define the scope use --all-topics or --topic. One scope must be specified unless you use --from- file. --shift-by Long: number-of-offsets Reset offsets shifting current offset by n, where n can be positive or negative. --state [String] When specified with --describe, includes the state of the group. Example: --bootstrap-server localhost: 9092 --describe --group group1 -- state When specified with --list, it displays the state of all groups. It can also be used to list groups with specific states. Example: --bootstrap-server localhost: 9092 --list --state stable,empty This option may be used with -- describe, --list and --bootstrap-server options only. --timeout Long: timeout (ms) The timeout that can be set for some use cases. For example, it can be used when describing the group to specify the maximum amount of time in milliseconds to wait before the group stabilizes (when the group is just created, or is going through some changes). (default: 5000) --to-current Reset offsets to current offset. --to-datetime String: datetime Reset offsets to offset from datetime. Format: YYYY-MM-DDTHH:mm:SS.sss --to-earliest Reset offsets to earliest offset. --to-latest Reset offsets to latest offset. --to-offset Long: offset Reset offsets to a specific offset. --topic String: topic The topic whose consumer group information should be deleted or topic whose should be included in the reset offset process. In reset- offsets case, partitions can be specified using this format: topic1:0,1,2, where 0,1,2 are the partition to be included in the process. Reset-offsets also supports multiple topic inputs. --verbose Provide additional information, if any, when describing the group. This option may be used with -- offsets/--members/--state and --bootstrap-server options only. Example: --bootstrap-server localhost: 9092 --describe --group group1 -- members --verbose --version Display Kafka version. 1.4、 偏移量重置 [rootlocalhost ~]# kafka-consumer-groups.sh --bootstrap-server 192.168.74.148:9092 --topic my_topic1 --group my_group1 --reset-offsets --to-offset 1 --executeGROUP TOPIC PARTITION NEW-OFFSET my_group1 my_topic1 0 1 my_group1 my_topic1 1 1 my_group1 my_topic1 2 1 1.5、再次查看 my_group1 组的详细信息 [rootlocalhost ~]# kafka-consumer-groups.sh --bootstrap-server 192.168.74.148:9092 --group my_group1 --describeGROUP TOPIC PARTITION CURRENT-OFFSET LOG-END-OFFSET LAG CONSUMER-ID HOST CLIENT-ID my_group1 my_topic1 0 2 2 0 consumer-my_group1-1-1306dc19-4077-4622-ae3b-ed6d077c4206 /192.168.74.148 consumer-my_group1-1 my_group1 my_topic1 2 3 3 0 consumer-my_group1-1-c4e3e804-e469-4f1a-ac0c-5b57907356f9 /192.168.74.148 consumer-my_group1-1 my_group1 my_topic1 1 1 1 0 consumer-my_group1-1-ad5fc413-e598-4e4b-b44c-0ae976a615c8 /192.168.74.148 consumer-my_group1-1
http://www.dnsts.com.cn/news/81897.html

相关文章:

  • 迅雷网站做爰视频前端开发工程师的工作内容
  • 网站是怎么建设的学广告设计难不难
  • 服务专业的建网站公司电话做印刷广告的图片在哪个网站找
  • 如何制作新型网站程序帝国cms资源网模板
  • 翻译网站建设阿里企业邮箱怎么样
  • 移动网站开发书籍网站备案后怎么做
  • 制作网站公司选 择乐云seo有没有做网站的软件
  • 小说网站如何建设wordpress哪个编辑器好用
  • 网站的设计与制作阅读第2版石家庄高铁站
  • iis网站权限配置建设网站为什么要虚拟主机
  • 广州定制网站建设方案书wordpress主页幻灯片
  • 汕头网站制作方法python编程快速上手
  • 建设信用卡网站是什么搜索引擎营销优化的方法
  • 24小时自助下单网站wordpress 仿quora
  • 做搜狗pc网站快速排怎么做网站端口代理
  • photoshop网站视觉设计步骤网络营销公司
  • 跟建设通差不多额网站如何申请公众号
  • 购物型网站建设网站留言发送到邮箱
  • 福州整站优化360网站建设价位
  • 二级网站都在一台服务器怎么做域名798艺术区
  • 飞色网站商城怎么做万网域名备案查询
  • 山东公司网站建设大连建设工程信息网官网查询
  • 杭州建设企业网站的品牌建设网站
  • 电商网站 支付帮别人做数学题赚钱的网站
  • 网站的外链是怎么做的青岛做网站的 上市公司
  • 企业建站公司案例深信服网络架构
  • 重庆网站建设的培训机构电商有多少种方法推广
  • 好的网站设计培训机构长春网站建设首选网诚传媒_
  • 访问网站需要账号密码网站开发工具有
  • 知春路网站建设公司WordPress对象储存