mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-03 20:27:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			503 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			503 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
# see https://datahubproject.io/docs/generated/ingestion/sources/kafka for complete documentation
 | 
						|
source:
 | 
						|
  type: "kafka"
 | 
						|
  config:
 | 
						|
    connection:
 | 
						|
      bootstrap: "localhost:9092"
 | 
						|
    topic_patterns:
 | 
						|
      allow:
 | 
						|
        - ".*"
 | 
						|
      deny:
 | 
						|
        - "^_.+" # deny all tables that start with an underscore
 | 
						|
 | 
						|
# see https://datahubproject.io/docs/metadata-ingestion/sink_docs/datahub for complete documentation
 | 
						|
sink:
 | 
						|
  type: "datahub-kafka"
 | 
						|
  config:
 | 
						|
    connection:
 | 
						|
      bootstrap: "localhost:9092"
 |