Manage packages

Important

This page only shows some frequently used operations.

  • For the latest and complete information about Pulsar admin, including commands, flags, descriptions, and more, see Pulsar admin doc.

  • For the latest and complete information about REST API, including parameters, responses, samples, and more, see REST API doc.

  • For the latest and complete information about Java admin API, including classes, methods, descriptions, and more, see Java admin API doc.

Package managers or package-management systems automatically manage packages in a consistent manner. These tools simplify the installation tasks, upgrade process, and deletion operations for users. A package is a minimal unit that a package manager deals with. In Pulsar, packages are organized at the tenant- and namespace-level to manage Pulsar Functions and Pulsar IO connectors (i.e., source and sink).

What is a package?

A package is a set of elements that the user would like to reuse in later operations. In Pulsar, a package can be a group of functions, sources, and sinks. You can define a package according to your needs.

The package management system in Pulsar stores the data and metadata of each package (as shown in the table below) and tracks the package versions.

MetadataDescription
descriptionThe description of the package.
contactThe contact information of a package. For example, an email address of the developer team.
create_timeThe time when the package is created.
modification_timeThe time when the package is lastly modified.
propertiesA user-defined key/value map to store other information.

How to use a package

Packages can efficiently use the same set of functions and IO connectors. For example, you can use the same function, source, and sink in multiple namespaces. The main steps are:

  1. Create a package in the package manager by providing the following information: type, tenant, namespace, package name, and version.

    ComponentDescription
    typeSpecify one of the supported package types: function, sink and source.
    tenantSpecify the tenant where you want to create the package.
    namespaceSpecify the namespace where you want to create the package.
    nameSpecify the complete name of the package, using the format <tenant>/<namespace>/<package name>.
    versionSpecify the version of the package using the format MajorVerion.MinorVersion in numerals.

    The information you provide creates a URL for a package, in the format <type>://<tenant>/<namespace>/<package name>/<version>.

  2. Upload the elements to the package, i.e., the functions, sources, and sinks that you want to use across namespaces.

  3. Apply permissions to this package from various namespaces.

Now, you can use the elements you defined in the package by calling this package from within the package manager. The package manager locates it by the URL. For example,

  1. sink://public/default/mysql-sink@1.0
  2. function://my-tenant/my-ns/my-function@0.1
  3. source://my-tenant/my-ns/mysql-cdc-source@2.3

Package management in Pulsar

You can use the command line tools, REST API, or the Java client to manage your package resources in Pulsar. More specifically, you can use these tools to upload, download, and delete a package, get the metadata and update the metadata of a package, get the versions of a package, and get all packages of a specific type under a namespace.

Upload a package

You can use the following commands to upload a package.

  • pulsar-admin
  • REST API
  • JAVA
  1. bin/pulsar-admin packages upload function://public/default/example@v0.1 --path package-file --description package-description

POST /admin/v3/packages/:type/:tenant/:namespace/:packageName/:version

Upload a package to the package management service synchronously.

  1. void upload(PackageMetadata metadata, String packageName, String path) throws PulsarAdminException;

Upload a package to the package management service asynchronously.

  1. CompletableFuture<Void> uploadAsync(PackageMetadata metadata, String packageName, String path);

Download a package

You can use the following commands to download a package.

  • pulsar-admin
  • REST API
  • JAVA
  1. bin/pulsar-admin packages download function://public/default/example@v0.1 --path package-file

GET /admin/v3/packages/:type/:tenant/:namespace/:packageName/:version

Download a package from the package management service synchronously.

  1. void download(String packageName, String path) throws PulsarAdminException;

Download a package from the package management service asynchronously.

  1. CompletableFuture<Void> downloadAsync(String packageName, String path);

Delete a package

You can use the following commands to delete a package.

  • pulsar-admin
  • REST API
  • JAVA

The following command deletes a package of version 0.1.

  1. bin/pulsar-admin packages delete functions://public/default/example@v0.1

DELETE /admin/v3/packages/:type/:tenant/:namespace/:packageName/:version

Delete a specified package synchronously.

  1. void delete(String packageName) throws PulsarAdminException;

Delete a specified package asynchronously.

  1. CompletableFuture<Void> deleteAsync(String packageName);

Get the metadata of a package

You can use the following commands to get the metadate of a package.

  • pulsar-admin
  • REST API
  • JAVA
  1. bin/pulsar-admin packages get-metadata function://public/default/test@v1

GET /admin/v3/packages/:type/:tenant/:namespace/:packageName/:version/metadata

Get the metadata of a package synchronously.

  1. PackageMetadata getMetadata(String packageName) throws PulsarAdminException;

Get the metadata of a package asynchronously.

  1. CompletableFuture<PackageMetadata> getMetadataAsync(String packageName);

Update the metadata of a package

You can use the following commands to update the metadata of a package.

  • pulsar-admin
  • REST API
  • JAVA
  1. bin/pulsar-admin packages update-metadata function://public/default/example@v0.1 --description update-description

PUT /admin/v3/packages/:type/:tenant/:namespace/:packageName/:version/metadata

Update the metadata of a package synchronously.

  1. void updateMetadata(String packageName, PackageMetadata metadata) throws PulsarAdminException;

Update the metadata of a package asynchronously.

  1. CompletableFuture<Void> updateMetadataAsync(String packageName, PackageMetadata metadata);

List all versions of a package

You can use the following commands to list all versions of a package.

  • pulsar-admin
  • REST API
  • JAVA
  1. bin/pulsar-admin packages list-versions type://tenant/namespace/packageName

GET /admin/v3/packages/:type/:tenant/:namespace/:packageName

List all versions of a package synchronously.

  1. List<String> listPackageVersions(String packageName) throws PulsarAdminException;

List all versions of a package asynchronously.

  1. CompletableFuture<List<String>> listPackageVersionsAsync(String packageName);

List all packages of a specific type under a namespace

You can use the following commands to list all packages of a specific type under a namespace.

  • pulsar-admin
  • REST API
  • JAVA
  1. bin/pulsar-admin packages list --type function public/default

PUT /admin/v3/packages/:type/:tenant/:namespace

List all packages of a specific type under a namespace synchronously.

  1. List<String> listPackages(String type, String namespace) throws PulsarAdminException;

List all packages of a specific type under a namespace asynchronously.

  1. CompletableFuture<List<String>> listPackagesAsync(String type, String namespace);