Manage packages
Package management enables version management and simplifies the upgrade and rollback processes for Functions, Sinks, and Sources. When you use the same function, sink and source in different namespaces, you can upload them to a common package management system.
#
Package nameA package
is identified by five parts: type
, tenant
, namespace
, package name
, and version
.
Part | Description |
---|---|
type | The type of the package. The following types are supported: function , sink and source . |
name | The fully qualified name of the package: <tenant>/<namespace>/<package name> . |
version | The version of the package. |
The following is a code sample.
class PackageName { private final PackageType type; private final String namespace; private final String tenant; private final String name; private final String version;}
enum PackageType { FUNCTION("function"), SINK("sink"), SOURCE("source");}
#
Package URLA package is located using a URL. The package URL is written in the following format:
<type>://<tenant>/<namespace>/<package name>@<version>
The following are package URL examples:
sink://public/default/mysql-sink@1.0
function://my-tenant/my-ns/my-function@0.1
source://my-tenant/my-ns/mysql-cdc-source@2.3
The package management system stores the data, versions and metadata of each package. The metadata is shown in the following table.
metadata | Description |
---|---|
description | The description of the package. |
contact | The contact information of a package. For example, team email. |
create_time | The time when the package is created. |
modification_time | The time when the package is modified. |
properties | A key/value map that stores your own information. |
#
PermissionsThe packages are organized by the tenant and namespace, so you can apply the tenant and namespace permissions to packages directly.
#
Package resourcesYou can use the package management with command line tools, REST API and Java client.
#
Upload a packageYou can upload a package to the package management service in the following ways.
- pulsar-admin
- REST API
- JAVA
bin/pulsar-admin packages upload functions://public/default/example@v0.1 --path package-file --description package-description
void upload(PackageMetadata metadata, String packageName, String path) throws PulsarAdminException;
Upload a package to the package management service asynchronously.
CompletableFuture<Void> uploadAsync(PackageMetadata metadata, String packageName, String path);
#
Download a packageYou can download a package to the package management service in the following ways.
- pulsar-admin
- REST API
- JAVA
bin/pulsar-admin packages download functions://public/default/example@v0.1 --path package-file
void download(String packageName, String path) throws PulsarAdminException;
Download a package to the package management service asynchronously.
CompletableFuture<Void> downloadAsync(String packageName, String path);
#
List all versions of a packageYou can get a list of all versions of a package in the following ways.
- pulsar-admin
- REST API
- JAVA
bin/pulsar-admin packages list --type function public/default
List<String> listPackageVersions(String packageName) throws PulsarAdminException;
List all versions of a package asynchronously.
CompletableFuture<List<String>> listPackageVersionsAsync(String packageName);
#
List all the specified type packages under a namespaceYou can get a list of all the packages with the given type in a namespace in the following ways.
- pulsar-admin
- REST API
- JAVA
bin/pulsar-admin packages list --type function public/default
List<String> listPackages(String type, String namespace) throws PulsarAdminException;
List all the packages with the given type in a namespace asynchronously.
CompletableFuture<List<String>> listPackagesAsync(String type, String namespace);
#
Get the metadata of a packageYou can get the metadata of a package in the following ways.
- pulsar-admin
- REST API
- JAVA
bin/pulsar-admin packages get-metadata function://public/default/test@v1
PackageMetadata getMetadata(String packageName) throws PulsarAdminException;
Get the metadata of a package asynchronously.
CompletableFuture<PackageMetadata> getMetadataAsync(String packageName);
#
Update the metadata of a packageYou can update the metadata of a package in the following ways.
- pulsar-admin
- REST API
- JAVA
bin/pulsar-admin packages update-metadata function://public/default/example@v0.1 --description update-description
void updateMetadata(String packageName, PackageMetadata metadata) throws PulsarAdminException;
Update a package metadata information asynchronously.
CompletableFuture<Void> updateMetadataAsync(String packageName, PackageMetadata metadata);
#
Delete a specified packageYou can delete a specified package with its package name in the following ways.
- pulsar-admin
- REST API
- JAVA
bin/pulsar-admin packages delete functions://public/default/example@v0.1
void delete(String packageName) throws PulsarAdminException;
Delete a specified package asynchronously.
CompletableFuture<Void> deleteAsync(String packageName);