# Kafka Metadata For context on getting started with ingestion, check out our [metadata ingestion guide](../README.md). ## Setup To install this plugin, run `pip install 'acryl-datahub[kafka]'`. ## Capabilities This plugin extracts the following: - Topics from the Kafka broker - Schemas associated with each topic from the schema registry ## Quickstart recipe Check out the following recipe to get started with ingestion! See [below](#config-details) for full configuration options. For general pointers on writing and running a recipe, see our [main recipe guide](../README.md#recipes). ```yml source: type: "kafka" config: # Coordinates connection: bootstrap: "broker:9092" schema_registry_url: http://localhost:8081 sink: # sink configs ``` ## Config details Note that a `.` is used to denote nested fields in the YAML recipe. | Field | Required | Default | Description | | -------------------------------------------- | -------- | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `conection.bootstrap` | | `"localhost:9092"` | Bootstrap servers. | | `connection.schema_registry_url` | | `http://localhost:8081"` | Schema registry location. | | `connection.schema_registry_config.