2021-08-26 13:33:44 +05:30
|
|
|
# Messaging Service
|
|
|
|
|
|
|
|
This schema defines the Messaging Service entity, such as Kafka and Pulsar.
|
|
|
|
|
2021-10-15 03:51:13 +05:30
|
|
|
**$id: **[https://open-metadata.org/schema/entity/services/messagingService.json](https://open-metadata.org/schema/entity/services/messagingService.json)
|
2021-08-26 13:33:44 +05:30
|
|
|
|
|
|
|
Type: `object`
|
|
|
|
|
|
|
|
## Properties
|
2021-09-19 08:43:31 +05:30
|
|
|
- **id** `required`
|
|
|
|
- Unique identifier of this messaging service instance.
|
|
|
|
- $ref: [../../type/basic.json#/definitions/uuid](../types/basic.md#uuid)
|
|
|
|
- **name** `required`
|
|
|
|
- Name that identifies this messaging service.
|
|
|
|
- Type: `string`
|
|
|
|
- Length: between 1 and 64
|
|
|
|
- **serviceType** `required`
|
|
|
|
- Type of messaging service such as Kafka or Pulsar...
|
|
|
|
- $ref: [#/definitions/messagingServiceType](#messagingservicetype)
|
|
|
|
- **description**
|
|
|
|
- Description of a messaging service instance.
|
|
|
|
- Type: `string`
|
2021-10-14 16:19:34 +05:30
|
|
|
- **displayName**
|
|
|
|
- Display Name that identifies this messaging service. It could be title or label from the source services.
|
|
|
|
- Type: `string`
|
2021-09-19 08:43:31 +05:30
|
|
|
- **brokers** `required`
|
|
|
|
- Multiple bootstrap addresses for Kafka. Single proxy address for Pulsar.
|
|
|
|
- $ref: [#/definitions/brokers](#brokers)
|
|
|
|
- **schemaRegistry**
|
|
|
|
- Schema registry URL.
|
|
|
|
- Type: `string`
|
|
|
|
- String format must be a "uri"
|
|
|
|
- **ingestionSchedule**
|
|
|
|
- Schedule for running metadata ingestion jobs.
|
|
|
|
- $ref: [../../type/schedule.json](../types/schedule.md)
|
|
|
|
- **href**
|
|
|
|
- Link to the resource corresponding to this messaging service.
|
|
|
|
- $ref: [../../type/basic.json#/definitions/href](../types/basic.md#href)
|
2021-08-26 13:33:44 +05:30
|
|
|
|
2021-10-15 03:51:13 +05:30
|
|
|
* **id** `required`
|
|
|
|
* Unique identifier of this messaging service instance.
|
|
|
|
* $ref: [../../type/basic.json#/definitions/uuid](../types/basic.md#uuid)
|
|
|
|
* **name** `required`
|
|
|
|
* Name that identifies this messaging service.
|
|
|
|
* Type: `string`
|
|
|
|
* Length: between 1 and 64
|
|
|
|
* **serviceType** `required`
|
|
|
|
* Type of messaging services such as Kafka or Pulsar...
|
|
|
|
* $ref: [#/definitions/messagingServiceType](messagingservice.md#messagingservicetype)
|
|
|
|
* **description**
|
|
|
|
* Description of a messaging service instance.
|
|
|
|
* Type: `string`
|
|
|
|
* **brokers** `required`
|
|
|
|
* Multiple bootstrap addresses for Kafka. Single proxy address for Pulsar.
|
|
|
|
* $ref: [#/definitions/brokers](messagingservice.md#brokers)
|
|
|
|
* **schemaRegistry**
|
|
|
|
* Schema registry URL.
|
|
|
|
* Type: `string`
|
|
|
|
* String format must be a "uri"
|
|
|
|
* **ingestionSchedule**
|
|
|
|
* Schedule for running metadata ingestion jobs.
|
|
|
|
* $ref: [../../type/schedule.json](../types/schedule.md)
|
|
|
|
* **href**
|
|
|
|
* Link to the resource corresponding to this messaging service.
|
|
|
|
* $ref: [../../type/basic.json#/definitions/href](../types/basic.md#href)
|
2021-08-26 13:33:44 +05:30
|
|
|
|
|
|
|
## Type definitions in this schema
|
2021-08-29 21:24:50 +00:00
|
|
|
### messagingServiceType
|
2021-08-26 13:33:44 +05:30
|
|
|
|
2021-09-19 08:43:31 +05:30
|
|
|
- Type of messaging service - Kafka or Pulsar.
|
|
|
|
- Type: `string`
|
|
|
|
- The value is restricted to the following:
|
|
|
|
1. _"Kafka"_
|
|
|
|
2. _"Pulsar"_
|
|
|
|
|
2021-08-26 13:33:44 +05:30
|
|
|
|
|
|
|
### brokers
|
|
|
|
|
2021-10-15 03:51:13 +05:30
|
|
|
_This document was updated on: Thursday, September 16, 2021_
|