Community
Articles Topics Q&A
Learn
Course Programming Dictionary
Tools Library
Development tools Website Source Code PHP Libraries JS special effects Website Materials Extension plug-ins
AI Tools
Leisure
Game Download Game Tutorials
search
English
简体中文 English 繁体中文 日本語 한국어 Melayu Français Deutsch
Login
singup

  • Popular searches:
  • PHP
  • MySQL
  • jquery
  • HTML
  • CSS
  • Whole station
  • Course
  • Article
  • Q&A
  • Download
Found a total of 1452 related content
Creating Kafka Consumers With Reactor Kafka

Course Introduction:This article details creating scalable and resilient Kafka consumers using Reactor Kafka in Spring Boot. It covers configuration, message processing, backpressure management (using buffer, onBackpressureDrop, etc.), robust error handling (retries, D

2025-03-07 comment 0  726

How to install kafka by docker

Course Introduction:Install Kafka using Docker Steps: Make sure Docker is installed on your system. Pull the official Kafka image from Docker Hub: docker pull confluentinc/cp-kafka Create and start Kafka container: docker run -d --name kafka -p 9092:9092 confluentinc/cp-kafka Use docker logs kafka to check the container logs to verify that Kafka is running. Access the Kafka control panel through your browser: http://localh

2025-04-15 comment 0  1219

**How to Get Consumer Group Offsets in Golang Kafka 10?**

Course Introduction:Getting Consumer Group Offsets in Golang Kafka 10With the introduction of consumer group support in Golang's Kafka library (Sarama) in Kafka 10,...

2024-10-25 comment 0  1174

Understanding Kafka Keys: A Comprehensive Guide

Course Introduction:Apache Kafka is a powerful distributed event stream platform that is widely used to build real -time data pipelines and applications. One of its core functions is the KAFKA message key, which plays a vital role in message partitions, sorting and routing. This article explores the concept, importance, and actual examples of the Kafka key. What is the Kafka key? In Kafka, each message contains two main components: Key: Determine the partition that the message will be sent. Value: The actual data of the message is effective. Kafka producers use keys to calculate the hash value, which determines the specific partition of the message. If the key is not provided, the message will be distributed in each of each

2025-01-29 comment 0  1183

How to Retrieve Consumer Group Offsets in Go with Kafka 10?

Course Introduction:Retrieving Consumer Group Offsets in Go with Kafka 10With the release of Kafka 10, the Go Kafka library (sarama) now provides consumer group...

2024-10-30 comment 0  1013

MoreTechnical Articles
Scala Tutorial

Course Elementary  13955

Course Introduction:Scala Tutorial Scala is a multi-paradigm programming language, designed to integrate various features of object-oriented programming and functional programming.

CSS Online Manual

Course Elementary  82522

Course Introduction:"CSS Online Manual" is the official CSS online reference manual. This CSS online development manual contains various CSS properties, definitions, usage methods, example operations, etc. It is an indispensable online query manual for WEB programming learners and developers! CSS: Cascading Style Sheets (English full name: Cascading Style Sheets) is an application used to express HTML (Standard Universal Markup Language).

SVG Tutorial

Course Elementary  13294

Course Introduction:SVG is a markup language for vector graphics in HTML5. It maintains powerful drawing capabilities and at the same time has a very high-end interface to operate graphics by directly operating Dom nodes. This "SVG Tutorial" is intended to allow students to master the SVG language and some of its corresponding APIs, combined with the knowledge of 2D drawing, so that students can render and control complex graphics on the page.

AngularJS Chinese Reference Manual

Course Elementary  24772

Course Introduction:In the "AngularJS Chinese Reference Manual", AngularJS extends HTML with new attributes and expressions. AngularJS can build a single page application (SPAs: Single Page Applications). AngularJS is very easy to learn.

Go language tutorial manual

Course Elementary  27597

Course Introduction:Go is a new language, a concurrent, garbage-collected, fast-compiled language. It can compile a large Go program in a few seconds on a single computer. Go provides a model for software construction that makes dependency analysis easier and avoids most C-style include files and library headers. Go is a statically typed language, and its type system has no hierarchy. Therefore users do not need to spend time defining relationships between types, which feels more lightweight than typical object-oriented languages. Go is a completely garbage-collected language and provides basic support for concurrent execution and communication. By its design, Go is intended to provide a method for constructing system software on multi-core machines.

More courses
  • kafka cannot connect to write

    When calling the producer remotely to write data, the following error occurs: ERROR Error when sending message to topic test with key: null, value: 6 bytes with error: (org.apache.kafka.clients.producer.internals.ErrorLoggingCallback) kafka...

    2017-06-15 09:21:24 0  1  1044

  • How to implement delay queue when operating kafka in php

    For example: How to implement a delay queue using PHP when operating Kafka? I know that Java can implement this delay queue, but I want to know if the same function can be achieved using PHP.

    2022-09-15 16:12:34 0  0  845

  • nginx - How to introduce all the files in the lua directory (`kafka/*`) into the environment?

    I have a question: How to introduce all the files (kafka/*) in the lua directory into the environment? I only know the following method {code...}

    2017-05-16 17:08:17 0  1  932

  • How to get the last offset in a topic from Kafka using php library?

    I'm writing a Kafka consumer for an API project using the php-rdkafka library. I need to find the last offset in the topic and get the value from it for further processing. For example, last offset in topic = 5, then I need to get offset 5 and send it through API until new offset is added. What I'm trying to run: $conf=newRdKafka\Conf();$settings=['socket.keepalive.enable'=>true,'log_l

    2023-09-10 11:00:45 0  1  815

  • How to send json data to kafka using Java

    I only see some news about Java producing STRING type on the Internet. According to Java's producer class, you can customize the type of message sent, such as producer.send(new KeyedMessage<String, HashMap<String, String>>(topic,message); ...

    2017-05-17 10:05:08 0  1  1404

MoreQ&A

Public welfare online PHP training,Help PHP learners grow quickly!

About us Disclaimer Sitemap

© php.cn All rights reserved