mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 02:37:05 +00:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			690 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			690 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
|   | # Kafka, Zookeeper and Schema Registry
 | ||
|  | 
 | ||
|  | DataHub uses Kafka as the pub-sub message queue in the backend. | ||
|  | [Official Confluent Kafka Docker images](https://hub.docker.com/u/confluentinc) found in Docker Hub is used without  | ||
|  | any modification. | ||
|  | 
 | ||
|  | ## Debugging Kafka
 | ||
|  | You can install [kafkacat](https://github.com/edenhill/kafkacat) to consume and produce messaged to Kafka topics. | ||
|  | For example, to consume messages on MetadataAuditEvent topic, you can run below command. | ||
|  | ``` | ||
|  | kafkacat -b localhost:9092 -t MetadataAuditEvent | ||
|  | ``` | ||
|  | However, `kafkacat` currently doesn't support Avro deserialization at this point,  | ||
|  | but they have an ongoing [work](https://github.com/edenhill/kafkacat/pull/151) for that. |