Managing Tenants

Tenants - 图1tip

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 docs.

  • 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.

Tenants, like namespaces, can be managed using the admin API. There are currently two configurable aspects of tenants:

  • Admin roles
  • Allowed clusters

Tenant resources

List

You can list all of the tenants associated with an instance.

  • pulsar-admin
  • REST API
  • Java

Use the list subcommand.

  1. pulsar-admin tenants list

Output:

  1. my-tenant-1
  2. my-tenant-2

GET /admin/v2/tenants/getTenants

  1. admin.tenants().getTenants();

Create

You can create a new tenant.

  • pulsar-admin
  • REST API
  • Java

Use the create subcommand:

  1. pulsar-admin tenants create my-tenant

When creating a tenant, you can optionally assign admin roles using the -r/--admin-roles flag, and clusters using the -c/--allowed-clusters flag. You can specify multiple values as a comma-separated list. Here are some examples:

  1. pulsar-admin tenants create my-tenant \
  2. --admin-roles role1,role2,role3 \
  3. --allowed-clusters cluster1
  1. pulsar-admin tenants create my-tenant \
  2. -r role1 \
  3. -c cluster1

PUT /admin/v2/tenants/:tenant/createTenant

  1. admin.tenants().createTenant(tenantName, tenantInfo);

Get configuration

You can fetch the configuration for an existing tenant at any time.

  • pulsar-admin
  • REST API
  • Java

Use the get subcommand and specify the name of the tenant. Here’s an example:

  1. pulsar-admin tenants get my-tenant
  1. {
  2. "adminRoles": [
  3. "admin1",
  4. "admin2"
  5. ],
  6. "allowedClusters": [
  7. "cl1",
  8. "cl2"
  9. ]
  10. }

GET /admin/v2/tenants/:tenant/getTenant

  1. admin.tenants().getTenantInfo(tenantName);

Delete

Tenants can be deleted from a Pulsar instance.

  • pulsar-admin
  • REST API
  • Java

Use the delete subcommand and specify the name of the tenant.

  1. pulsar-admin tenants delete my-tenant

DELETE /admin/v2/tenants/:tenant/deleteTenant

  1. admin.Tenants().deleteTenant(tenantName);

Update

You can update a tenant’s configuration.

  • pulsar-admin
  • REST API
  • Java

Use the update subcommand.

  1. pulsar-admin tenants update my-tenant \
  2. --admin-roles role1,role2 \
  3. --allowed-clusters cluster1,cluster2

POST /admin/v2/tenants/:tenant/updateTenant

  1. admin.tenants().updateTenant(tenantName, tenantInfo);