Launching profilers using Command-line
Data Catalog now supports launching Data profilers using the Command-Line Interface (CLI) option.
This, apart from launching the profilers using the Data Catalog UI. The CLI will be one executable and will not have any external dependencies. You can execute some operations in the Data Catalog service using the CDP CLI commands.
Users must have valid permission(s) to launch profilers on a data lake.
For more information about the access details, see Prerequisites to access Data Catalog service.
You must have the following entitlement granted to use this feature:
DATA_CATALOG_ENABLE_API_SERVICE
For more information about the CDP command-line interface and setting up the same, see CDP CLI.
In your CDP CLI environment, enter the following command to get started in the CLI mode.
cdp datacatalog --help
This command provides information about the available commands in Data Catalog.
The output is displayed as:
NAME
datacatalog
DESCRIPTION
Cloudera Data Catalog Service is a web service, using this service user can execute operations like launching profilers in Data Catalog.
AVAILABLE SUBCOMMANDS
launch-profilers
You get additional information about this command by using:
cdp datacatalog launch-profilers --help
NAME
launch-profilers -
DESCRIPTION
Launches DataCatalog profilers in a given datalake.
SYNOPSIS
launch-profilers
--datalake <value>
[--cli-input-json <value>]
[--generate-cli-skeleton]
OPTIONS
--datalake (string) The Name or CRN of the Datalake.
--cli-input-json (string) Performs service operation based on the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, the CLI values will override the JSON-provided values.
--generate-cli-skeleton (boolean) Prints a sample input JSON to standard output. Note the specified operation is not run if this argument is specified. The sample input can be used as an argument for --cli-input-json.
OUTPUT
datahubCluster -> (object)
Information about a cluster.
clusterName -> (string)
The name of the cluster.
crn -> (string)
The CRN of the cluster.
creationDate -> (datetime)
The date when the cluster was created.
clusterStatus -> (string)
The status of the cluster.
nodeCount -> (integer)
The cluster node count.
workloadType -> (string)
The workload type for the cluster.
cloudPlatform -> (string)
The cloud platform.
imageDetails -> (object)
The details of the image used for cluster instances.
name -> (string)
The name of the image used for cluster instances.
id -> (string)
The ID of the image used for cluster instances.
This is internally generated by the cloud provider to Uniquely identify the image.
catalogUrl -> (string)
The image catalog URL.
catalogName -> (string)
The image catalog name.
environmentCrn -> (string)
The CRN of the environment.
credentialCrn -> (string)
The CRN of the credential.
datalakeCrn -> (string)
The CRN of the attached datalake.
clusterTemplateCrn -> (string)
The CRN of the cluster template used for the cluster
creation.
You can use the following CLI command to launch the Data profiler:
cdp datacatalog launch-profilers --datalake <datalake name or
datalake CRN>
Example
cdp datacatalog launch-profilers --datalake
test-env-ycloud
{
"datahubCluster": {
"clusterName": "cdp-dc-profilers-24835599",
"crn":
"crn:cdp:datahub:us-west-1:9d74eee4-1cad-45d7-b645-7ccf9edbb73d:cluster:dfaa7646-d77f-4099-a3ac-6628e1576160",
"creationDate": "2021-06-04T11:31:23.735000+00:00",
"clusterStatus": "REQUESTED",
"nodeCount": 3,
"workloadType": "v6-cdp-datacatalog-profiler_7_2_8-1",
"cloudPlatform": "YARN",
"imageDetails": {
"name":
"docker-sandbox.infra.cloudera.com/cloudbreak/centos-76:2020-05-18-17-16-16",
"id": "d558405b-b8ba-4425-94cc-a8baff9ffb2c",
"catalogUrl":
"https://cloudbreak-imagecatalog.s3.amazonaws.com/v3-test-cb-image-catalog.json",
"catalogName": "cdp-default"
},
"environmentCrn":
"crn:cdp:environments:us-west-1:9d74eee4-1cad-45d7-b645-7ccf9edbb73d:environment:bf795226-b57c-4c4d-8520-82249e57a54f",
"credentialCrn":
"crn:altus:environments:us-west-1:9d74eee4-1cad-45d7-b645-7ccf9edbb73d:credential:3adc8ddf-9ff9-44c9-bc47-1587db19f539",
"datalakeCrn":
"crn:cdp:datalake:us-west-1:9d74eee4-1cad-45d7-b645-7ccf9edbb73d:datalake:5e6471cf-7cb8-42cf-bda4-61d419cfbc53",
"clusterTemplateCrn":
"crn:cdp:datahub:us-west-1:9d74eee4-1cad-45d7-b645-7ccf9edbb73d:clustertemplate:16a5d8bd-66d3-42ea-8e8d-bd8765873572"
}
}