From a8c1df083f6eea01428dbcf47cf18a3a6722da62 Mon Sep 17 00:00:00 2001 From: Ravindra Lanka Date: Thu, 26 May 2022 03:34:04 -0700 Subject: [PATCH] Fix pulsar source docs. (#5011) --- .../docs/sources/pulsar/pulsar.md | 32 ++----------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/metadata-ingestion/docs/sources/pulsar/pulsar.md b/metadata-ingestion/docs/sources/pulsar/pulsar.md index 30449f4739..f8a8ad76eb 100644 --- a/metadata-ingestion/docs/sources/pulsar/pulsar.md +++ b/metadata-ingestion/docs/sources/pulsar/pulsar.md @@ -1,38 +1,12 @@ +> **_NOTE:_** Always use TLS encryption in a production environment and use variable substitution for sensitive information (e.g. ${CLIENT_ID} and ${CLIENT_SECRET}). +> + ### Prerequisites In order to ingest metadata from Apache Pulsar, you will need: * Access to a Pulsar Instance, if authentication is enabled a valid access token. * Pulsar version >= 2.7.0 -* ... > **_NOTE:_** A _superUser_ role is required for listing all existing tenants within a Pulsar instance. > - -### Install the Plugin(s) - -Run the following commands to install the relevant plugin(s): - -`pip install 'acryl-datahub[pulsar]'` - -### Configure the Ingestion Recipe(s) - -Use the following recipe(s) 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](../../../../metadata-ingestion/README.md#recipes)._ - -#### Quickstart recipe -Getting started receipt -```yml -source: - type: pulsar - config: - # Required fields - web_service_url: "http://localhost:8080" - -sink: - # sink configs -``` - -> **_NOTE:_** Always use TLS encryption in a production environment and use variable substitution for sensitive information (e.g. ${CLIENT_ID} and ${CLIENT_SECRET}). ->