AdminTools.md 50.6 KB
Newer Older
M
Matteo Merli 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

# Pulsar admin tool

<!-- TOC depthFrom:1 depthTo:5 withLinks:1 updateOnSave:1 orderedList:0 -->

- [Pulsar admin tool](#pulsar-admin-tool)
	- [What is Pulsar admin tool?](#what-is-pulsar-admin-tool)
		- [How does it work?](#how-does-it-work)
	- [Prerequisite](#prerequisite)
		- [Pulsar admin CLI tool](#pulsar-admin-cli-tool)
		- [REST API](#rest-api)
		- [Java API](#java-api)
		- [Pulsar entities](#pulsar-entities)
		- [Brokers](#brokers)
			- [list of active brokers](#list-of-active-brokers)
			- [list of namespaces owned by a given broker](#list-of-namespaces-owned-by-a-given-broker)
17 18 19
			- [update dynamic configuration](#update-dynamic-configuration)
			- [get list of dynamic configuration name](#get-list-of-dynamic-configuration-name)
			- [get value of dynamic configurations](#get-value-of-dynamic-configurations)
M
Matteo Merli 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
		- [Properties](#properties)
			- [list existing properties](#list-existing-properties)
			- [create property](#create-property)
			- [get property](#get-property)
			- [update property](#update-property)
			- [delete property](#delete-property)
		- [Clusters](#clusters)
			- [provision cluster](#provision-cluster)
			- [get cluster](#get-cluster)
			- [update cluster](#update-cluster)
			- [delete cluster](#delete-cluster)
			- [list all clusters](#list-all-clusters)
		- [Namespace](#namespace)
			- [create namespace](#create-namespace)
			- [get namespace](#get-namespace)
			- [list all namespaces under property](#list-all-namespaces-under-property)
			- [list all namespaces under cluster](#list-all-namespaces-under-cluster)
			- [delete namespace](#delete-namespace)
			- [grant permission](#grant-permission)
			- [get permission](#get-permission)
			- [revoke permission](#revoke-permission)
			- [set replication cluster](#set-replication-cluster)
			- [get replication cluster](#get-replication-cluster)
			- [set backlog quota policies](#set-backlog-quota-policies)
			- [get backlog quota policies](#get-backlog-quota-policies)
			- [remove backlog quota policies](#remove-backlog-quota-policies)
			- [set persistence policies](#set-persistence-policies)
			- [get persistence policies](#get-persistence-policies)
			- [unload namespace bundle](#unload-namespace-bundle)
			- [set message-ttl](#set-message-ttl)
			- [get message-ttl](#get-message-ttl)
			- [split bundle](#split-bundle)
			- [clear backlog](#clear-backlog)
53
			- [clear bundle backlog](#clear-bundle-backlog)
M
Matteo Merli 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
			- [set retention](#set-retention)
			- [get retention](#get-retention)
		- [Persistent](#persistent)
			- [create partitioned topic](#create-partitioned-topic)
			- [get partitioned topic](#get-partitioned-topic)
			- [delete partitioned topic](#delete-partitioned-topic)
			- [Delete topic](#delete-topic)
			- [List of topics](#list-of-topics)
			- [Grant permission](#grant-permission)
			- [Get permission](#get-permission)
			- [Revoke permission](#revoke-permission)
			- [get partitioned topic stats](#get-partitioned-topic-stats)
			- [Get stats](#get-stats)
			- [Get detailed stats](#get-detailed-stats)
			- [Peek messages](#peek-messages)
			- [Skip messages](#skip-messages)
			- [Skip all messages](#skip-all-messages)
71 72
			- [Expire messages](#expire-messages)
			- [Expire all messages](#expire-all-messages)
M
Matteo Merli 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
			- [Reset cursor](#reset-cursor)
			- [Lookup of topic](#lookup-of-topic)
			- [Get subscriptions](#get-subscriptions)
			- [unsubscribe](#unsubscribe)
		- [Namespace isolation policy](#namespace-isolation-policy)
			- [create/update ns-isolation policy](#createupdate-ns-isolation-policy)
			- [get ns-isolation policy](#get-ns-isolation-policy)
			- [delete ns-isolation policy](#delete-ns-isolation-policy)
			- [list all ns-isolation policy](#list-all-ns-isolation-policy)
		- [Resource-Quotas](#resource-quotas)
			- [set namespace resource quota](#set-namespace-resource-quota)
			- [get namespace resource quota](#get-namespace-resource-quota)
			- [reset namespace resource quota](#reset-namespace-resource-quota)
		- [Pulsar client tool](#pulsar-client-tool)
			- [produce message command](#produce-message-command)
			- [consume message command](#consume-message-command)

<!-- /TOC -->

## What is Pulsar admin tool?

Pulsar admin tool is a command line utility which provides an interface
between Pulsar-broker and administration to configure and monitor
various entities of broker such as properties, clusters, topics,
namespaces, etc. It is an admin tool which will be useful to onboard
application on Pulsar by allowing creation of property, cluster and
namespace. It also helps to administrate status and usage of topics.
Other than CLI (command line interface), there are other two
alternatives such as REST api and java-api also available to manage and
monitor above described entities. Hence, in this document we will walk
through how to manage Pulsar entities using CLI, REST api and Java-api.

### How does it work?

As we discussed above, Pulsar-broker also exposes admin REST api which
allows similar functionality to configure and administrate various
entities of Pulsar. Pulsar admin CLI tool calls these REST apis using
its java-client api to execute admin commands. You can learn more about
list of available REST apis in *swagger-documentation*.

## Prerequisite

### Pulsar admin CLI tool

As we discussed *Pulsar-Security* in other section which allows
Pulsar-broker to authenticate and authorize incoming requests.
Admin-tool calls Pulsar-broker’s REST api to execute list of commands.
However, if Pulsar-broker has security enabled then admin-tool has to
pass additional information while calling broker’s REST apis in order to
get requests authenticated. Therefore, make sure that you have this
information correctly configured in `conf/client.conf` file.

Now, you are all set to use Pulsar-admin CLI tool. Go to below directory
to start with admin tool.

```shell
$ bin/pulsar-admin --help
```

In earlier section, we also talked about other alternative approaches to
manage Pulsar-entities - REST api and java-api. In this document we will
also talk about REST api end-points and java-api’s snippet to manage the
Pulsar entities.

### REST API

You can learn about Pulsar-admin REST api definition at
*swagger-documentation.* However, in this document we will see use of
each API and how admin CLI command maps to its appropriate REST api.

### Java API

Java-api can be accessed by : ```com.yahoo.pulsar.client.admin.PulsarAdmin```

Below code snippet shows how to initialize *PulsarAdmin* and later in
the document we will see how to use it in order to manage Pulsar
entities.


  ```java
  URL url = new URL("http://localhost:8080");
  String authPluginClassName = "com.org.MyAuthPluginClass"; //Pass auth-plugin class fully-qualified name if Pulsar-security enabled
  String authParams = "param1=value1";//Pass auth-param if auth-plugin class requires it
  boolean useTls = false;
  boolean tlsAllowInsecureConnection = false;
  String tlsTrustCertsFilePath = null;

  ClientConfiguration config = new ClientConfiguration();
  config.setAuthentication(authPluginClassName, authParams);
  config.setUseTls(useTls);
  config.setTlsAllowInsecureConnection(tlsAllowInsecureConnection);
  config.setTlsTrustCertsFilePath(tlsTrustCertsFilePath);

  PulsarAdmin admin = new PulsarAdmin(url, config);
  ```


### Pulsar entities


We can mainly access following broker’s entities using admin command
line tool. If you are not already aware about any of following entity
then you can read in details at *Getting-started-guide*. [TODO: add link]

### Brokers

It allows to get list of active brokers and list of namespaces owned by
a given broker.

#### list of active brokers
It fetches available active brokers those are serving traffic.  

###### CLI

```
$ pulsar-admin brokers list use
```

```
broker1.use.org.com:8080
```

###### REST

```
198
GET /admin/brokers/{cluster}
M
Matteo Merli 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
```

###### Java

```java
admin.brokers().getActiveBrokers(clusterName)
```


#### list of namespaces owned by a given broker

It finds all namespaces which are owned and served by a given broker.  

###### CLI

```
$ pulsar-admin brokers namespaces --url broker1.use.org.com:8080 use
```

```json
{
    "my-property/use/my-ns/0x00000000_0xffffffff": {
        "broker_assignment": "shared",
        "is_controlled": false,
        "is_active": true
    }
}
```
###### REST

```
230
GET /admin/brokers/{cluster}/{broker}/ownedNamespaces
M
Matteo Merli 已提交
231 232 233 234 235 236 237 238
```

###### Java

```java
admin.brokers().getOwnedNamespaces(cluster,brokerUrl)
```

239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
#### update dynamic configuration
Broker can locally override value of updatable dynamic service-configurations that are stored into zookeeper. This interface allows to change the value of broker's dynamic-configuration into the zookeeper. Broker receives zookeeper-watch with new changed value and broker updates new value locally.

###### CLI

```
$ pulsar-admin brokers update-dynamic-config brokerShutdownTimeoutMs 100
```

```
N/A
```

###### REST

```
GET /admin/brokers/configuration/{configName}/{configValue}
```

###### Java

```java
admin.brokers().updateDynamicConfiguration(configName, configValue)
```

#### get list of dynamic configuration name
It gives list of updatable dynamic service-configuration name.

###### CLI

```
$ pulsar-admin brokers list-dynamic-config
```

```
brokerShutdownTimeoutMs
```

###### REST

```
GET /admin/brokers/configuration
```

###### Java

```java
admin.brokers().getDynamicConfigurationNames()
```

#### get value of dynamic configurations
It gives value of all dynamic configurations stored in zookeeper

###### CLI

```
$ pulsar-admin brokers get-all-dynamic-config
```

```
brokerShutdownTimeoutMs:100
```

###### REST

```
GET /admin/brokers/configuration/values
```

###### Java

```java
admin.brokers().getAllDynamicConfigurations()
```

#### Update dynamic configuration
Broker can locally override value of updatable dynamic service-configurations that are stored into zookeeper. This interface allows to change the value of broker's dynamic-configuration into the zookeeper. Broker receives zookeeper-watch with new changed value and broker updates new value locally.

###### CLI

```
$ pulsar-admin brokers update-dynamic-config brokerShutdownTimeoutMs 100
```

```
N/A
```

###### REST

```
GET /admin/brokers/configuration/{configName}/{configValue}
```

###### Java

```java
admin.brokers().updateDynamicConfiguration(configName, configValue)
```

#### Get list of dynamic configuration name
It gives list of updatable dynamic service-configuration name.

###### CLI

```
$ pulsar-admin brokers list-dynamic-config
```

```
brokerShutdownTimeoutMs
```

###### REST

```
GET /admin/brokers/configuration
```

###### Java

```java
admin.brokers().getDynamicConfigurationNames()
```

#### Get value of dynamic configurations
It gives value of all dynamic configurations stored in zookeeper

###### CLI

```
$ pulsar-admin brokers get-all-dynamic-config
```

```
brokerShutdownTimeoutMs:100
```

###### REST

```
GET /admin/brokers/configuration/values
```

###### Java

```java
admin.brokers().getAllDynamicConfigurations()
```


M
Matteo Merli 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413

### Properties

A property identifies an application domain. For e.g. finance, mail,
sports etc are examples of a property. Tool allows to do CRUD operation
to manage property in Pulsar.

#### list existing properties

It lists down all existing properties in Pulsar system.  

###### CLI

```
$ pulsar-admin properties list
```

```
my-property
```

###### REST

```
414
GET /admin/properties
M
Matteo Merli 已提交
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
```

###### Java

```java
admin.properties().getProperties()
```


#### create property


It creates a new property in Pulsar system. For a property, you can configure admin roles (comma separated) who can manage property and clusters (comma separated) where property will be available.  

###### CLI

```
pulsar-admin properties create my-property --admin-roles admin1,admin2 --allowed-clusters cl1,cl2
```

```
N/A
```

###### REST

```
442
PUT /admin/properties/{property}
M
Matteo Merli 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
```

###### Java

```java
admin.properties().createProperty(property, propertyAdmin)
```


#### get property

It gets property configuration for a given existing property.  

###### CLI

```
$pulsar-admin properties get my-property
```

```json
{
    "adminRoles": [
        "admin1",
        "admin2"
    ],
    "allowedClusters": [
        "cl1",
        "cl2"
    ]
}
```

###### REST

```
478
GET /admin/properties/{property}
M
Matteo Merli 已提交
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
```

###### Java

```java
admin.properties().getPropertyAdmin(property)
```



#### update property

It also updates configuration of already created property. You can update admin roles and cluster information for a given existing property.  

###### CLI

```$ pulsar-admin properties update my-property --admin-roles admin-update-1,admin-update-2 --allowed-clusters cl1,cl2```

```
N/A
```

###### REST

```
504
POST /admin/properties/{property}
M
Matteo Merli 已提交
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
```

###### Java

```java
admin.properties().updateProperty(property, propertyAdmin)
```


#### delete property


It deletes an existing property from Pulsar system.  
###### CLI

```
$ pulsar-admin properties delete my-property
```

```
N/A
```

###### REST

```
531
DELETE /admin/properties/{property}
M
Matteo Merli 已提交
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
```

###### Java

```java
admin.properties().deleteProperty(property)
```




### Clusters

A cluster allows a property and its namespaces to be available in one or
more geographic locations. A cluster typically maps to a region’s
colocation name such as use, usw, etc. Tool allows to do CRUD operation
to manage cluster in Pulsar.

#### provision cluster

It provisions a new cluster in Pulsar. It also requires Pulsar super-user privileges to make sure only super-admin can perform such system level operation.  

###### CLI

```
557
$ pulsar-admin clusters create --url http://my-cluster.org.com:8080/ --broker-url pulsar://my-cluster.org.com:6650/ cl1
M
Matteo Merli 已提交
558 559 560 561 562 563 564 565 566
```

```
N/A
```

###### REST

```
567
PUT /admin/clusters/{cluster}
M
Matteo Merli 已提交
568 569 570 571 572
```

###### Java

```java
573
admin.clusters().createCluster(cluster, new ClusterData(serviceUrl, serviceUrlTls, brokerServiceUrl, brokerServiceUrlTls))
M
Matteo Merli 已提交
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
```



#### get cluster

It gets a cluster configuration for a given existing cluster.  

###### CLI

```
$ pulsar-admin clusters get cl1
```

```json
{
    "serviceUrl": "http://my-cluster.org.com:8080/",
591 592 593
    "serviceUrlTls": null,
    "brokerServiceUrl": "pulsar://my-cluster.org.com:6650/",
    "brokerServiceUrlTls": null
M
Matteo Merli 已提交
594 595 596 597 598 599
}
```

###### REST

```
600
GET /admin/clusters/{cluster}
M
Matteo Merli 已提交
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
```

###### Java

```java
admin.clusters().getCluster(cluster)
```


#### update cluster

It updates cluster configuration data for a given existing cluster.  

###### CLI

```
617
$ pulsar-admin clusters update --url http://my-cluster.org.com:4081/ --broker-url pulsar://my-cluster.org.com:3350/ cl1
M
Matteo Merli 已提交
618 619 620 621 622 623 624 625 626
```

```
N/A
```

###### REST

```
627
POST /admin/clusters/{cluster}
M
Matteo Merli 已提交
628 629 630 631 632
```

###### Java

```java
633
admin.clusters().updateCluster(cluster, new ClusterData(serviceUrl, serviceUrlTls, brokerServiceUrl, brokerServiceUrlTls))
M
Matteo Merli 已提交
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
```


#### delete cluster

It deletes an existing cluster from Pulsar system.  

###### CLI

```
$ pulsar-admin clusters delete cl1
```

```
N/A
```

###### REST

```
654
DELETE /admin/clusters/{cluster}
M
Matteo Merli 已提交
655 656 657 658 659 660 661 662 663 664 665
```

###### Java

```java
admin.clusters().deleteCluster(cluster)
```


#### list all clusters

666
It gives a list of all created clusters in Pulsar system.  
M
Matteo Merli 已提交
667 668 669 670 671 672 673 674 675 676 677 678 679 680

###### CLI

```
$ pulsar-admin clusters list
```

```
cl1
```

###### REST

```
681
GET /admin/clusters
M
Matteo Merli 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
```

###### Java

```java
admin.clusters().getClusters()
```


### Namespace

A namespace is a logical nomenclature within a property. A property may
have multiple namespaces to manage different applications under that
property.

#### create namespace

It creates a namespace for a property under a given existing cluster.  

###### CLI

```
$ pulsar-admin namespaces create test-property/cl1/ns1
```

```
N/A
```

###### REST

```
714
PUT /admin/namespaces/{property}/{cluster}/{namespace}
M
Matteo Merli 已提交
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
```

###### Java

```java
admin.namespaces().createNamespace(namespace)
```

#### get namespace

It gets created namespace policies information.  

###### CLI

```
$pulsar-admin namespaces policies test-property/cl1/ns1
```

```json
{
    "auth_policies": {
        "namespace_auth": {},
        "destination_auth": {}
    },
    "replication_clusters": [],
    "bundles_activated": true,
    "bundles": {
        "boundaries": [
            "0x00000000",
            "0xffffffff"
        ],
        "numBundles": 1
    },
    "backlog_quota_map": {},
    "persistence": null,
    "latency_stats_sample_rate": {},
    "message_ttl_in_seconds": 0,
    "retention_policies": null,
    "deleted": false
}
```

###### REST

```
760
GET /admin/namespaces/{property}/{cluster}/{namespace}
M
Matteo Merli 已提交
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
```

###### Java

```java
admin.namespaces().getPolicies(namespace)
```


#### list all namespaces under property

It gets all created namespace names under a given property.  

###### CLI

```
$ pulsar-admin namespaces list test-property
```

```
test-property/cl1/ns1
```

###### REST

```
787
GET /admin/namespaces/{property}
M
Matteo Merli 已提交
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
```

###### Java

```java
admin.namespaces().getNamespaces(property)
```


#### list all namespaces under cluster

It gets all namespace names under a property for a given cluster  

###### CLI

```
$ pulsar-admin namespaces list-cluster test-property/cl1
```

```
test-property/cl1/ns1
```

###### REST

```
814
GET /admin/namespaces/{property}/{cluster}
M
Matteo Merli 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
```

###### Java

```java
admin.namespaces().getNamespaces(property, cluster)
```

#### delete namespace

It deletes an existing namespace  

###### CLI

```
$ pulsar-admin namespaces delete test-property/cl1/ns1
```

```
N/A
```

###### REST

```
840
DELETE /admin/namespaces/{property}/{cluster}/{namespace}
M
Matteo Merli 已提交
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
```

###### Java

```java
admin.namespaces().deleteNamespace(namespace)
```

#### grant permission

It grants a permission to a specific client role for list of required operations such as produce and consume.  

###### CLI

```
$ pulsar-admin namespaces grant-permission --actions produce,consume --role admin10 test-property/cl1/ns1
```

```
N/A
```

###### REST

```
866
POST /admin/namespaces/{property}/{cluster}/{namespace}/permissions/{role}
M
Matteo Merli 已提交
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
```

###### Java

```java
admin.namespaces().grantPermissionOnNamespace(namespace, role, getAuthActions(actions))
```


#### get permission

It shows created permission rules for a given namespace  

###### CLI

```
$ pulsar-admin namespaces permissions test-property/cl1/ns1
```

```json
{
    "admin10": [
        "produce",
        "consume"
    ]
}   
```

###### REST

```
898
GET /admin/namespaces/{property}/{cluster}/{namespace}/permissions
M
Matteo Merli 已提交
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
```

###### Java

```java
admin.namespaces().getPermissions(namespace)
```

#### revoke permission

It revokes the permission from a specific client role so, that client-role will not be able to access a given namespace.  

###### CLI

```
$ pulsar-admin namespaces revoke-permission --role admin10 test-property/cl1/ns1
```

```
N/A
```

###### REST

```
924
DELETE /admin/namespaces/{property}/{cluster}/{namespace}/permissions/{role}
M
Matteo Merli 已提交
925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
```

###### Java

```java
admin.namespaces().revokePermissionsOnNamespace(namespace, role)
```


#### set replication cluster

It sets replication clusters for a namespace, so Pulsar can internally replicate publish message from one colo to another colo. However, in order to set replication clusters, your namespace has to be global such as: *test-property/**global**/ns1.* It means cluster-name has to be *“global”*  

###### CLI

```
$ pulsar-admin namespaces set-clusters --clusters cl2 test-property/cl1/ns1
```

```
N/A
```

###### REST

```
951
POST /admin/namespaces/{property}/{cluster}/{namespace}/replication
M
Matteo Merli 已提交
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
```

###### Java

```java
admin.namespaces().setNamespaceReplicationClusters(namespace, clusters)
```    

#### get replication cluster

It gives a list of replication clusters for a given namespace.  

###### CLI

```
$ pulsar-admin namespaces get-clusters test-property/cl1/ns1
```

```
cl2
```

###### REST

```
977
GET /admin/namespaces/{property}/{cluster}/{namespace}/replication
M
Matteo Merli 已提交
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
```

###### Java

```java
admin.namespaces().getNamespaceReplicationClusters(namespace)
```

#### set backlog quota policies

Backlog quota helps broker to restrict bandwidth/storage of a namespace once it reach certain threshold limit . Admin can set this limit and one of the following action after the limit is reached.

  1.  producer_request_hold: broker will hold and not persist produce request payload

  2.  producer_exception: broker will disconnects with client by giving exception

  3.  consumer_backlog_eviction: broker will start discarding backlog messages

  Backlog quota restriction can be taken care by defining restriction of backlog-quota-type: destination_storage  

###### CLI

```
$ pulsar-admin namespaces set-backlog-quota --limit 10 --policy producer_request_hold test-property/cl1/ns1
```

```
N/A
```

###### REST

```
1011
POST /admin/namespaces/{property}/{cluster}/{namespace}/backlogQuota
M
Matteo Merli 已提交
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
```

###### Java

```java
admin.namespaces().setBacklogQuota(namespace, new BacklogQuota(limit, policy))
```

#### get backlog quota policies

It shows a configured backlog quota for a given namespace.  

###### CLI

```
$ pulsar-admin namespaces get-backlog-quotas test-property/cl1/ns1
```

```json
{
    "destination_storage": {
        "limit": 10,
        "policy": "producer_request_hold"
    }
}          
```

###### REST

```
1042
GET /admin/namespaces/{property}/{cluster}/{namespace}/backlogQuotaMap
M
Matteo Merli 已提交
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
```

###### Java

```java
admin.namespaces().getBacklogQuotaMap(namespace)
```




#### remove backlog quota policies  

It removes backlog quota policies for a given namespace  

###### CLI

```
$ pulsar-admin namespaces remove-backlog-quota test-property/cl1/ns1
```

```
N/A
```

###### REST

```
1071
DELETE /admin/namespaces/{property}/{cluster}/{namespace}/backlogQuota
M
Matteo Merli 已提交
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
```

###### Java

```java
admin.namespaces().removeBacklogQuota(namespace, backlogQuotaType)
```


#### set persistence policies

Persistence policies allow to configure persistency-level for all topic messages under a given namespace.

  -   Bookkeeper-ack-quorum: Number of acks (guaranteed copies) to wait for each entry, default: 0

  -   Bookkeeper-ensemble: Number of bookies to use for a topic, default: 0

  -   Bookkeeper-write-quorum: How many writes to make of each entry, default: 0

  -   Ml-mark-delete-max-rate: Throttling rate of mark-delete operation (0 means no throttle), default: 0.0  

###### CLI

```
$ pulsar-admin namespaces set-persistence --bookkeeper-ack-quorum 2 --bookkeeper-ensemble 3 --bookkeeper-write-quorum 2 --ml-mark-delete-max-rate 0 test-property/cl1/ns1
```

```
N/A
```

###### REST

```
1106
POST /admin/persistent/{property}/{cluster}/{namespace}/persistence
M
Matteo Merli 已提交
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
```

###### Java

```java
admin.namespaces().setPersistence(namespace,new PersistencePolicies(bookkeeperEnsemble, bookkeeperWriteQuorum,bookkeeperAckQuorum,managedLedgerMaxMarkDeleteRate))
```


#### get persistence policies

It shows configured persistence policies of a given namespace.  

###### CLI

```
H
haooran 已提交
1123
$ pulsar-admin namespaces get-persistence test-property/cl1/ns1
M
Matteo Merli 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
```

```json
{
    "bookkeeperEnsemble": 3,
    "bookkeeperWriteQuorum": 2,
    "bookkeeperAckQuorum": 2,
    "managedLedgerMaxMarkDeleteRate": 0
}
```

###### REST

```
1138
GET /admin/namespaces/{property}/{cluster}/{namespace}/persistence
M
Matteo Merli 已提交
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
```

###### Java

```java
admin.namespaces().getPersistence(namespace)
```


#### unload namespace bundle

      Namespace bundle is a virtual group of topics which belong to same namespace. If broker gets overloaded with number of bundles then this command can help to unload heavy bundle from that broker, so it can be served by some other less loaded broker. Namespace bundle is defined with it’s start and end range such as 0x00000000 and 0xffffffff.  

###### CLI

```
$ pulsar-admin namespaces unload --bundle 0x00000000_0xffffffff test-property/pstg-gq1/ns1
```

```
N/A
```

###### REST

```
1165
PUT /admin/namespaces/{property}/{cluster}/{namespace}/unload
M
Matteo Merli 已提交
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
```

###### Java

```java
admin.namespaces().unloadNamespaceBundle(namespace, bundle)
```


#### set message-ttl

It configures message’s time to live (in seconds) duration.  

###### CLI

```
$ pulsar-admin namespaces set-message-ttl --messageTTL 100 test-property/cl1/ns1
```

```
N/A
```

###### REST

```
1192
POST /admin/namespaces/{property}/{cluster}/{namespace}/messageTTL
M
Matteo Merli 已提交
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
```

###### Java

```java
admin.namespaces().setNamespaceMessageTTL(namespace, messageTTL)
```

#### get message-ttl

It gives a message ttl of configured namespace.  

###### CLI

```
$ pulsar-admin namespaces get-message-ttl test-property/cl1/ns1
```

```
100
```


###### REST

```
1219
GET /admin/namespaces/{property}/{cluster}/{namespace}/messageTTL
M
Matteo Merli 已提交
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
```

###### Java

```java
admin.namespaces().getNamespaceReplicationClusters(namespace)
```


#### split bundle

Each namespace bundle can contain multiple topics and each bundle can be served by only one broker. If bundle gets heavy with multiple live topics in it then it creates load on that broker and in order to resolve this issue, admin can split bundle using this command.

###### CLI

```
$ pulsar-admin namespaces split-bundle --bundle 0x00000000_0xffffffff test-property/cl1/ns1
```

```
N/A
```

###### REST

```
1246
PUT /admin/namespaces/{property}/{cluster}/{namespace}/{bundle}/split
M
Matteo Merli 已提交
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
```

###### Java

```java
admin.namespaces().splitNamespaceBundle(namespace, bundle)
```


#### clear backlog

1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
It clears all message backlog for all the topics those belong to specific namespace. You can also clear backlog for a specific subscription as well.  

###### CLI

```
$ pulsar-admin namespaces clear-backlog --sub my-subscription test-property/pstg-gq1/ns1
```

```
N/A
```

###### REST

```
POST /admin/namespaces/{property}/{cluster}/{namespace}/clearBacklog
```

###### Java

```java
admin.namespaces().clearNamespaceBacklogForSubscription(namespace, subscription)
```


#### clear bundle backlog

M
Matteo Merli 已提交
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
It clears all message backlog for all the topics those belong to specific NamespaceBundle. You can also clear backlog for a specific subscription as well.  

###### CLI

```
$ pulsar-admin namespaces clear-backlog  --bundle 0x00000000_0xffffffff  --sub my-subscription test-property/pstg-gq1/ns1
```

```
N/A
```

###### REST

```
1300
POST /admin/namespaces/{property}/{cluster}/{namespace}/{bundle}/clearBacklog
M
Matteo Merli 已提交
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
```

###### Java

```java
admin.namespaces().clearNamespaceBundleBacklogForSubscription(namespace, bundle, subscription)
```


#### set retention

Each namespace contains multiple topics and each topic’s retention size (storage size) should not exceed to a specific threshold or it should be stored till certain time duration. This command helps to configure retention size and time of topics in a given namespace.  

###### CLI

```
$ pulsar-admin set-retention --size 10 --time 100 test-property/cl1/ns1
```

```
N/A
```

###### REST

```
1327
POST /admin/namespaces/{property}/{cluster}/{namespace}/retention
M
Matteo Merli 已提交
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
```

###### Java

```java
admin.namespaces().setRetention(namespace, new RetentionPolicies(retentionTimeInMin, retentionSizeInMB))
```


#### get retention

It shows retention information of a given namespace.  

###### CLI

```
$ pulsar-admin namespaces get-retention test-property/cl1/ns1
```

```json
{
    "retentionTimeInMinutes": 10,
    "retentionSizeInMB": 100
}
```

###### REST

```
1357
GET /admin/namespaces/{property}/{cluster}/{namespace}/retention
M
Matteo Merli 已提交
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
```

###### Java

```java
admin.namespaces().getRetention(namespace)
```



### Persistent

Persistent helps to access topic which is a logical endpoint for
publishing and consuming messages. Producers publish messages to the
topic and consumers subscribe to the topic, to consume messages
published to the topic.

In below instructions and commands - persistent topic format is:

```persistent://<property_name> <cluster_name> <namespace_name> <topic-name>```

#### create partitioned topic


It creates a partitioned topic under a given namespace. In order to create a partitioned topic, no of partitioned must be more than 1.  

###### CLI


```
$ pulsar-admin persistent create-partitioned-topic --partitions 2 persistent://test-property/cl1/ns1/pt1
```

```
N/A
```

###### REST

```
1398
PUT /admin/persistent/{property}/{cluster}/{namespace}/{destination}/partitions
M
Matteo Merli 已提交
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
```

###### Java

```java
admin.persistentTopics().createPartitionedTopic(persistentTopic, numPartitions)
```

#### get partitioned topic

It gives metadata of created partitioned topic.  

###### CLI

```
$ pulsar-admin persistent get-partitioned-topic-metadata persistent://test-property/cl1/ns1/pt1
```

```json
{
    "partitions": 2
}
```

###### REST

```
1426
GET /admin/persistent/{property}/{cluster}/{namespace}/{destination}/partitions
M
Matteo Merli 已提交
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
```

###### Java

```java
admin.persistentTopics().getPartitionedTopicMetadata(persistentTopic)
```


#### delete partitioned topic

It deletes a created partitioned topic.  

###### CLI

```
$ pulsar-admin persistent delete-partitioned-topic persistent://test-property/cl1/ns1/pt1
```

```
N/A
```

###### REST
```
1452
DELETE /admin/persistent/{property}/{cluster}/{namespace}/{destination}/partitions
M
Matteo Merli 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
```

###### Java

```java
admin.persistentTopics().deletePartitionedTopic(persistentTopic)
```


#### Delete topic

It deletes a topic. The topic cannot be deleted if there's any active subscription or producers connected to it.  

###### CLI

```
pulsar-admin persistent delete persistent://test-property/cl1/ns1/my-topic
```

```
N/A
```

###### REST

```
1479
DELETE /admin/persistent/{property}/{cluster}/{namespace}/{destination}
M
Matteo Merli 已提交
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
```

###### Java

```java
admin.persistentTopics().delete(persistentTopic)
```


#### List of topics

It provides a list of persistent topics exist under a given namespace.  

###### CLI

```
$ pulsar-admin persistent list test-property/cl1/ns1
```

```
my-topic
```

###### REST

```
1506
GET /admin/persistent/{property}/{cluster}/{namespace}
M
Matteo Merli 已提交
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
```

###### Java

```java
admin.persistentTopics().getList(namespace)
```

#### Grant permission

It grants permissions on a client role to perform specific actions on a given topic.  

###### CLI

```
$ pulsar-admin persistent grant-permission --actions produce,consume --role application1 persistent://test-property/cl1/ns1/tp1
```

```
N/A
```

###### REST

```
1532
POST /admin/persistent/{property}/{cluster}/{namespace}/{destination}/permissions/{role}
M
Matteo Merli 已提交
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
```

###### Java

```java
admin.persistentTopics().grantPermission(destination, role, getAuthActions(actions))
```

#### Get permission

It shows a list of client role permissions on a given topic.  

###### CLI

```
$ pulsar-admin permissions persistent://test-property/cl1/ns1/tp1
```

```json
{
    "application1": [
        "consume",
        "produce"
    ]
}
```

###### REST

```
1563
GET /admin/persistent/{property}/{cluster}/{namespace}/{destination}/permissions
M
Matteo Merli 已提交
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
```

###### Java

```java
admin.persistentTopics().getPermissions(destination)
```

#### Revoke permission

It revokes a permission which was granted on a client role.  

###### CLI

```
$ pulsar-admin persistent revoke-permission --role application1 persistent://test-property/cl1/ns1/tp1
```

```
N/A
```

###### REST

```
1589
DELETE /admin/persistent/{property}/{cluster}/{namespace}/{destination}/permissions/{role}
M
Matteo Merli 已提交
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
```

###### Java

```java
admin.persistentTopics().revokePermissions(destination, role)
```

#### get partitioned topic stats

It shows current statistics of a given partitioned topic.  

###### CLI

```
$ pulsar-admin persistent partitioned-stats --per-partition persistent://test-property/cl1/ns1/tp1
```

```json
{
    "msgRateIn": 4641.528542257553,
    "msgThroughputIn": 44663039.74947473,
    "msgRateOut": 0,
    "msgThroughputOut": 0,
    "averageMsgSize": 1232439.816728665,
    "storageSize": 135532389160,
    "publishers": [
        {
            "msgRateIn": 57.855383881403576,
            "msgThroughputIn": 558994.7078932219,
            "averageMsgSize": 613135,
            "producerId": 0,
            "producerName": null,
            "address": null,
            "connectedSince": null
        }
    ],
    "subscriptions": {
        "my-topic_subscription": {
            "msgRateOut": 0,
            "msgThroughputOut": 0,
            "msgBacklog": 116632,
            "type": null,
            "msgRateExpired": 36.98245516804671,
            "consumers": []
        }
    },
    "replication": {}
}          
```

###### REST

```
1644
GET /admin/persistent/{property}/{cluster}/{namespace}/{destination}/partitioned-stats
M
Matteo Merli 已提交
1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
```

###### Java

```java
admin.persistentTopics().getPartitionedStats(persistentTopic, perPartition)
```


#### Get stats


It shows current statistics of a given non-partitioned topic.

  -   **msgRateIn**: The sum of all local and replication publishers' publish rates in messages per second

  -   **msgThroughputIn**: Same as above, but in bytes per second instead of messages per second

  -   **msgRateOut**: The sum of all local and replication consumers' dispatch rates in messages per second

  -   **msgThroughputOut**: Same as above, but in bytes per second instead of messages per second

  -   **averageMsgSize**: The average size in bytes of messages published within the last interval

  -   **storageSize**: The sum of the ledgers' storage size for this topic. See

  -   **publishers**: The list of all local publishers into the topic. There can be zero or thousands

  -   **averageMsgSize**: Average message size in bytes from this publisher within the last interval

  -   **producerId**: Internal identifier for this producer on this topic

  -   **producerName**: Internal identifier for this producer, generated by the client library

  -   **address**: IP address and source port for the connection of this producer

  -   **connectedSince**: Timestamp this producer was created or last reconnected

  -   **subscriptions**: The list of all local subscriptions to the topic

  -   **my-subscription**: The name of this subscription (client defined)

  -   **msgBacklog**: The count of messages in backlog for this subscription

  -   **type**: This subscription type

  -   **msgRateExpired**: The rate at which messages were discarded instead of dispatched from this subscription due to TTL

  -   **consumers**: The list of connected consumers for this subscription

  -   **consumerName**: Internal identifier for this consumer, generated by the client library

  -   **availablePermits**: The number of messages this consumer has space for in the client library's listen queue. A value of 0 means the client library's queue is full and receive() isn't being called. A nonzero value means this consumer is ready to be dispatched messages.

  -   **replication**: This section gives the stats for cross-colo replication of this topic

  -   **replicationBacklog**: The outbound replication backlog in messages

  -   **connected**: Whether the outbound replicator is connected

  -   **replicationDelayInSeconds**: How long the oldest message has been waiting to be sent through the connection, if connected is true

  -   **inboundConnection**: The IP and port of the broker in the remote cluster's publisher connection to this broker

  -   **inboundConnectedSince**: The TCP connection being used to publish messages to the remote cluster. If there are no local publishers connected, this connection is automatically closed after a minute.  
###### CLI

```
$ pulsar-admin persistent stats persistent://test-property/cl1/ns1/tp1
```

```json
{
    "msgRateIn": 0,
    "msgThroughputIn": 0,
    "msgRateOut": 0,
    "msgThroughputOut": 0,
    "averageMsgSize": 0,
    "storageSize": 11814,
    "publishers": [
        {
            "msgRateIn": 0,
            "msgThroughputIn": 0,
            "averageMsgSize": 0,
            "producerId": 0,
            "producerName": "gq1-54-4001",
            "address": "/10.215.138.238:44458",
            "connectedSince": "2016-06-16 22:56:56.509"
        }
    ],
    "subscriptions": {
        "my-subscription": {
            "msgRateOut": 0,
            "msgThroughputOut": 0,
            "msgBacklog": 17,
            "type": "Shared",
            "msgRateExpired": 2.1771406267194497,
            "consumers": [
                {
                    "msgRateOut": 0,
                    "msgThroughputOut": 0,
                    "consumerName": "a67f7",
                    "availablePermits": 1186,
                    "address": "/10.215.166.121:35095",
                    "connectedSince": "2016-06-25 00:05:58.312"
                }
            ]
        }
    },
    "replication": {}
}
```

###### REST
```
1760
GET /admin/persistent/{property}/{cluster}/{namespace}/{destination}/stats
M
Matteo Merli 已提交
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
```

###### Java

```java
admin.persistentTopics().getStats(persistentTopic)
```

#### Get detailed stats

It shows detailed statistics of a topic.

  -   **entriesAddedCounter**: Messages published since this broker loaded this topic

  -   **numberOfEntries**: Total number of messages being tracked

  -   **totalSize**: Total storage size in bytes of all messages

  -   **currentLedgerEntries**: Count of messages written to the ledger currently open for writing

  -   **currentLedgerSize**: Size in bytes of messages written to ledger currently open for writing

  -   **lastLedgerCreatedTimestamp**: time when last ledger was created

  -   **lastLedgerCreationFailureTimestamp:** time when last ledger was failed

  -   **waitingCursorsCount**: How many cursors are "caught up" and waiting for a new message to be published

  -   **pendingAddEntriesCount**: How many messages have (asynchronous) write requests we are waiting on completion

  -   **lastConfirmedEntry**: The ledgerid:entryid of the last message successfully written. If the entryid is -1, then the ledger has been opened or is currently being opened but has no entries written yet.

  -   **state**: The state of this ledger for writing. LedgerOpened means we have a ledger open for saving published messages.

  -   **ledgers**: The ordered list of all ledgers for this topic holding its messages

  -   **cursors**: The list of all cursors on this topic. There will be one for every subscription you saw in the topic stats.

  -   **markDeletePosition**: The ack position: the last message the subscriber acknowledged receiving

  -   **readPosition**: The latest position of subscriber for reading message

  -   **waitingReadOp**: This is true when the subscription has read the latest message published to the topic and is waiting on new messages to be published.

  -   **pendingReadOps**: The counter for how many outstanding read requests to the BookKeepers we have in progress

  -   **messagesConsumedCounter**: Number of messages this cursor has acked since this broker loaded this topic

  -   **cursorLedger**: The ledger being used to persistently store the current markDeletePosition

  -   **cursorLedgerLastEntry**: The last entryid used to persistently store the current markDeletePosition

  -   **individuallyDeletedMessages**: If Acks are being done out of order, shows the ranges of messages Acked between the markDeletePosition and the read-position

  -   **lastLedgerSwitchTimestamp**: The last time the cursor ledger was rolled over

  -   **state**: The state of the cursor ledger: Open means we have a cursor ledger for saving updates of the markDeletePosition.

###### CLI

```
$ pulsar-admin persistent stats-internal persistent://test-property/cl1/ns1/tp1
```

```json
{
    "entriesAddedCounter": 20449518,
    "numberOfEntries": 3233,
    "totalSize": 331482,
    "currentLedgerEntries": 3233,
    "currentLedgerSize": 331482,
    "lastLedgerCreatedTimestamp": "2016-06-29 03:00:23.825",
    "lastLedgerCreationFailureTimestamp": null,
    "waitingCursorsCount": 1,
    "pendingAddEntriesCount": 0,
    "lastConfirmedEntry": "324711539:3232",
    "state": "LedgerOpened",
    "ledgers": [
        {
            "ledgerId": 324711539,
            "entries": 0,
            "size": 0
        }
    ],
    "cursors": {
        "my-subscription": {
            "markDeletePosition": "324711539:3133",
            "readPosition": "324711539:3233",
            "waitingReadOp": true,
            "pendingReadOps": 0,
            "messagesConsumedCounter": 20449501,
            "cursorLedger": 324702104,
            "cursorLedgerLastEntry": 21,
            "individuallyDeletedMessages": "[(324711539:3134‥324711539:3136], (324711539:3137‥324711539:3140], ]",
            "lastLedgerSwitchTimestamp": "2016-06-29 01:30:19.313",
            "state": "Open"
        }
    }
}
```


###### REST

```
1866
GET /admin/persistent/{property}/{cluster}/{namespace}/{destination}/internalStats
M
Matteo Merli 已提交
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
```

###### Java

```java
admin.persistentTopics().getInternalStats(persistentTopic)
```


#### Peek messages

It peeks N messages for a specific subscription of a given topic.  

###### CLI

```
$ pulsar-admin persistent peek-messages --count 10 --subscription my-subscription persistent://test-property/cl1/ns1/my-topic
```

```          
Message ID: 315674752:0  
Properties:  {  "X-Pulsar-publish-time" : "2015-07-13 17:40:28.451"  }
msg-payload
```

###### REST

```
1895
GET /admin/persistent/{property}/{cluster}/{namespace}/{destination}/subscription/{subName}/position/{messagePosition}
M
Matteo Merli 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
```


###### Java

```java
admin.persistentTopics().peekMessages(persistentTopic, subName, numMessages)
```


#### Skip messages

It skips N messages for a specific subscription of a given topic.  

###### CLI

```
$ pulsar-admin persistent skip --count 10 --subscription my-subscription persistent://test-property/cl1/ns1/my-topic
```

```
N/A
```

###### REST

```
1923
POST /admin/persistent/{property}/{cluster}/{namespace}/{destination}/subscription/{subName}/skip/{numMessages}
M
Matteo Merli 已提交
1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948
```

###### Java

```java
admin.persistentTopics().skipMessages(persistentTopic, subName, numMessages)
```

#### Skip all messages

It skips all old messages for a specific subscription of a given topic.  

###### CLI

```
$ pulsar-admin persistent skip-all --subscription my-subscription persistent://test-property/cl1/ns1/my-topic
```

```
N/A
```

###### REST

```
1949
POST /admin/persistent/{property}/{cluster}/{namespace}/{destination}/subscription/{subName}/skip_all
M
Matteo Merli 已提交
1950 1951 1952 1953 1954 1955 1956 1957
```

###### Java

```java
admin.persistentTopics().skipAllMessages(persistentTopic, subName)
```

1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011
#### Expire messages

It expires messages which are older than given expiry time (in seconds) for a specific subscription of a given topic.

###### CLI

```
$ pulsar-admin persistent expire-messages --subscription my-subscription --expireTime 120 persistent://test-property/cl1/ns1/my-topic
```

```
N/A
```

###### REST

```
POST /admin/persistent/{property}/{cluster}/{namespace}/{destination}/subscription/{subName}/expireMessages/{expireTimeInSeconds}
```

###### Java

```java
admin.persistentTopics().expireMessages(persistentTopic, subName, expireTimeInSeconds)
```

#### Expire all messages 

It expires messages which are older than given expiry time (in seconds) for all subscriptions of a given topic.

###### CLI

```
$ pulsar-admin persistent expire-messages-all-subscriptions --expireTime 120 persistent://test-property/cl1/ns1/my-topic
```

```
N/A
```

###### REST

```
POST /admin/persistent/{property}/{cluster}/{namespace}/{destination}/all_subscription/expireMessages/{expireTimeInSeconds}
```

###### Java

```java
admin.persistentTopics().expireMessagesForAllSubscriptions(persistentTopic, expireTimeInSeconds)
```



M
Matteo Merli 已提交
2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028
#### Reset cursor

It resets a subscription’s cursor position back to the position which was recorded X minutes before. It essentially calculates time and position of cursor at X minutes before and resets it at that position.  

###### CLI

```
$ pulsar-admin persistent reset-cursor --subscription my-subscription --time 10 persistent://test-property/pstg-gq1/ns1/my-topic
```

```
N/A
```

###### REST

```
2029
POST /admin/persistent/{property}/{cluster}/{namespace}/{destination}/subscription/{subName}/resetcursor/{timestamp}
M
Matteo Merli 已提交
2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
```

###### Java

```java
admin.persistentTopics().resetCursor(persistentTopic, subName, timestamp)
```


#### Lookup of topic


It locates broker url which is serving the given topic.  

###### CLI

```
$ pulsar-admin persistent lookup persistent://test-property/pstg-gq1/ns1/my-topic
```

```
"pulsar://broker1.org.com:4480"
```

###### REST
```
GET http://<broker-url>:<port>/lookup/v2/destination/persistent/{property}/{cluster}/{namespace}/{dest}
(\* this api serves by “lookup” resource and not “persistent”)
```

###### Java

```java
admin.lookups().lookupDestination(destination)
```

#### Get subscriptions

It shows all subscription names for a given topic.  

###### CLI

```
$ pulsar-admin persistent subscriptions persistent://test-property/pstg-gq1/ns1/my-topic
```

```
my-subscription
```

###### REST

```
2083
GET /admin/persistent/{property}/{cluster}/{namespace}/{destination}/subscriptions
M
Matteo Merli 已提交
2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
```

###### Java

```java
admin.persistentTopics().getSubscriptions(persistentTopic)
```

#### unsubscribe

It can also help to unsubscribe a subscription which is no more processing further messages.  

###### CLI

```
$pulsar-admin persistent unsubscribe --subscription my-subscription persistent://test-property/pstg-gq1/ns1/my-topic
```

```
N/A
```

###### REST

```
2109
DELETE /admin/persistent/{property}/{cluster}/{namespace}/{destination}/subscription/{subName}
M
Matteo Merli 已提交
2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146
```

###### Java

```java
admin.persistentTopics().deleteSubscription(persistentTopic, subName)
```

### Namespace isolation policy

#### create/update ns-isolation policy

It creates a namespace isolation policy.

  -   auto-failover-policy-params: comma separated name=value auto failover policy parameters

  -   auto-failover-policy-type: auto failover policy type name ['min_available']

  -   namespaces: comma separated namespaces-regex list

  -   primary: comma separated primary-broker-regex list

  -   secondary: comma separated secondary-broker-regex list  

###### CLI

```
$ pulsar-admin ns-isolation-policy --auto-failover-policy-params min_limit=0 --auto-failover-policy-type min_available --namespaces test-property/cl1/ns.*|test-property/cl1/test-ns*.* --secondary broker2.* --primary broker1.* cl1 ns-is-policy1
```

```
N/A
```

###### REST

```
2147
POST /admin/clusters/{cluster}/namespaceIsolationPolicies/{policyName}
M
Matteo Merli 已提交
2148 2149
```

2150
###### Java
M
Matteo Merli 已提交
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188
```java
admin.clusters().createNamespaceIsolationPolicy(clusterName, policyName, namespaceIsolationData);
```


#### get ns-isolation policy


It shows a created namespace isolation policy.  

###### CLI

```
$ pulsar-admin ns-isolation-policy get cl1 ns-is-policy1
```

```json
{
    "namespaces": [
        "test-property/cl1/ns.*|test-property/cl1/test-ns*.*"
    ],
    "primary": [
        "broker1.*"
    ],
    "secondary": [
        "broker2.*"
    ],
    "auto_failover_policy": {
        "policy_type": "min_available",
        "parameters": {
            "min_limit": "0"
        }
    }
}
```

###### REST
```
2189
GET /admin/clusters/{cluster}/namespaceIsolationPolicies/{policyName}
M
Matteo Merli 已提交
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215
```

###### Java

```java
admin.clusters().getNamespaceIsolationPolicy(clusterName, policyName)
```


#### delete ns-isolation policy

It deletes a namespace isolation policy.  

###### CLI

```
$ pulsar-admin ns-isolation-policy delete ns-is-policy1
```

```
N/A
```

###### REST

```
2216
DELETE /admin/clusters/{cluster}/namespaceIsolationPolicies/{policyName}
M
Matteo Merli 已提交
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260
```

###### Java

```java
admin.clusters().deleteNamespaceIsolationPolicy(clusterName, policyName)
```


#### list all ns-isolation policy


It shows all namespace isolation policies served by a given cluster.  

###### CLI

```
$ pulsar-admin ns-isolation-policy list cl1
```

```json
{
    "ns-is-policy1": {
        "namespaces": [
            "test-property/cl1/ns.*|test-property/cl1/test-ns*.*"
        ],
        "primary": [
            "broker1.*"
        ],
        "secondary": [
            "broker2.*"
        ],
        "auto_failover_policy": {
            "policy_type": "min_available",
            "parameters": {
                "min_limit": "0"
            }
        }
    }
}
```

###### REST
```
2261
GET /admin/clusters/{cluster}/namespaceIsolationPolicies
M
Matteo Merli 已提交
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289
```

###### Java

```java
admin.clusters().getNamespaceIsolationPolicies(clusterName)
```


### Resource-Quotas

#### set namespace resource quota

It sets customize quota information for a given namespace bundle.  

###### CLI

```
$ pulsar-admin resource-quotas set --bandwidthIn 10 --bandwidthOut 10 --bundle 0x00000000_0xffffffff --memory 10 --msgRateIn 10 --msgRateOut 10 --namespace test-property/cl1/ns1
```

```
N/A
```

###### REST

```
2290
POST /admin/resource-quotas/{property}/{cluster}/{namespace}/{bundle}
M
Matteo Merli 已提交
2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
```

###### Java

```java
admin.resourceQuotas().setNamespaceBundleResourceQuota(namespace, bundle, quota)
```

#### get namespace resource quota

It shows configured resource quota information.  

###### CLI

```
$ pulsar-admin resource-quotas get  --bundle 0x00000000_0xffffffff --namespace test-property/cl1/my-topic
```

```json
{
    "msgRateIn": 80.40352101165782,
    "msgRateOut": 132.58187392933146,
    "bandwidthIn": 144273.8819600397,
    "bandwidthOut": 234497.9190227951,
    "memory": 199.91739142481595,
    "dynamic": true
}          
```

###### REST
```
2322
GET /admin/resource-quotas/{property}/{cluster}/{namespace}/{bundle}
M
Matteo Merli 已提交
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
```

###### Java

```java
admin.resourceQuotas().getNamespaceBundleResourceQuota(namespace, bundle)
```

#### reset namespace resource quota

It again reverts back the customized resource quota and sets back default resource_quota.  

###### CLI

```
$ pulsar-admin resource-quotas reset-namespace-bundle-quota --bundle 0x00000000_0xffffffff --namespace test-property/cl1/my-topic
```

```
N/A
```

###### REST

```
2348
DELETE /admin/resource-quotas/{property}/{cluster}/{namespace}/{bundle}
M
Matteo Merli 已提交
2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421
```

###### Java

```java
admin.resourceQuotas().resetNamespaceBundleResourceQuota(namespace, bundle)
```


Pulsar additional tools
---

### Pulsar client tool

As we know that Pulsar provides Java api to produce and consume messages on a given topic. However, Pulsar also provides CLI utility which also helps to produce and consume messages on a topic.

In your terminal, go to below directory to play with client tool.

```$ $PULSAR_HOME/bin```

```$ ./pulsar-client --help```

#### produce message command
<table>
  <tbody>
  <tr>
      <td colspan="2">```pulsar-client produce```</td>   
    </tr>
    <tr>
      <th>options</th>
      <th>description</th>   
    </tr>
    <tr>
      <td>```-f, --files```</td>
      <td>```Comma separated file paths to send. Cannot be used with -m. Either -f or -m must be provided```</td>
    </tr>
    <tr>
      <td>```-m, --messages```</td>
      <td>```Comma separted string messages to send. Cannot be used with -f. Either -m or -f must be provided```</td>
    </tr>
    <tr>
      <td>```-n, --num-produce```</td>
      <td>```Number of times to send message(s), Default: 1```</td>
    </tr>
    <tr>
      <td>```-r, --rate```</td>
      <td>```Rate (in msg/sec) at which to produce. Value of 0 will produce messages as fast as possible, Default: 0.0```</td>
    </tr>
<table>

#### consume message command
<table>
  <tbody>
  <tr>
      <td colspan="2">```pulsar-client consume```</td>   
    </tr>
    <tr>
      <th>options</th>
      <th>description</th>   
    </tr>
    <tr>
      <td>```--hex```</td>
      <td>```Display binary messages in hex, Default: false```</td>
    </tr>
    <tr>
      <td>```-n, --num-messages```</td>
      <td>```Number of messages to consume, Default: 1```</td>
    </tr>
    <tr>
      <td>```-r, --rate```</td>
      <td>```Rate (in msg/sec) at which to consume. Value of 0 will consume messages as fast as possible, Default: 0.0```</td>
    </tr>
    <tr>
2422 2423 2424 2425 2426 2427
      <td>```-s, --subscription-name```</td>
      <td>```Subscription name```</td>
    </tr>
    <tr>
      <td>```-t, --subscription-type```</td>
      <td>```Subscription type: Exclusive, Shared, Failover, Default: Exclusive```</td>
M
Matteo Merli 已提交
2428 2429
    </tr>
<table>