You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ur...@apache.org on 2022/07/15 06:02:04 UTC

[pulsar-site] branch main updated: Docs sync done from apache/pulsar(#c5ccc92)

This is an automated email from the ASF dual-hosted git repository.

urfree pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new f9e409a3e77 Docs sync done from apache/pulsar(#c5ccc92)
f9e409a3e77 is described below

commit f9e409a3e77d46514b4dc01c3b9d4038ebbd04d1
Author: Pulsar Site Updater <de...@pulsar.apache.org>
AuthorDate: Fri Jul 15 06:01:59 2022 +0000

    Docs sync done from apache/pulsar(#c5ccc92)
---
 site2/website-next/docs/getting-started-helm.md |  7 -------
 site2/website-next/docs/helm-deploy.md          |  7 -------
 site2/website-next/docs/kubernetes-helm.md      |  7 -------
 site2/website-next/docs/reference-metrics.md    | 16 ++++++++--------
 4 files changed, 8 insertions(+), 29 deletions(-)

diff --git a/site2/website-next/docs/getting-started-helm.md b/site2/website-next/docs/getting-started-helm.md
index 6560fef606e..b1a29e1b563 100644
--- a/site2/website-next/docs/getting-started-helm.md
+++ b/site2/website-next/docs/getting-started-helm.md
@@ -104,17 +104,10 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 4. Use the Pulsar Helm chart to install a Pulsar cluster to Kubernetes. 
 
-   :::note
-
-   You need to specify `--set initialize=true` when installing Pulsar the first time. This command installs and starts Apache Pulsar.
-
-   :::
-
    ```bash
    
    helm install \
        --values examples/values-minikube.yaml \
-       --set initialize=true \
        --namespace pulsar \
        pulsar-mini apache/pulsar
    
diff --git a/site2/website-next/docs/helm-deploy.md b/site2/website-next/docs/helm-deploy.md
index 17319ea6848..0dbd024b979 100644
--- a/site2/website-next/docs/helm-deploy.md
+++ b/site2/website-next/docs/helm-deploy.md
@@ -396,17 +396,10 @@ helm repo add apache https://pulsar.apache.org/charts
 helm repo update
 helm install pulsar apache/pulsar \
     --timeout 10m \
-    --set initialize=true \
     --set [your configuration options]
 
 ```
 
-:::note
-
-For the first deployment, add `--set initialize=true` option to initialize bookie and Pulsar cluster metadata.
-
-:::
-
 You can also use the `--version <installation version>` option if you want to install a specific version of Pulsar Helm chart.
 
 ## Monitor deployment
diff --git a/site2/website-next/docs/kubernetes-helm.md b/site2/website-next/docs/kubernetes-helm.md
index 6a381e90f58..eabe21236a7 100644
--- a/site2/website-next/docs/kubernetes-helm.md
+++ b/site2/website-next/docs/kubernetes-helm.md
@@ -98,17 +98,10 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 4. Use the Pulsar Helm chart to install a Pulsar cluster to Kubernetes. 
 
-   :::note
-
-   You need to specify `--set initialize=true` when installing Pulsar the first time. This command installs and starts Apache Pulsar.
-
-   :::
-
    ```bash
    
    helm install \
        --values examples/values-minikube.yaml \
-       --set initialize=true \
        --namespace pulsar \
        pulsar-mini apache/pulsar
    
diff --git a/site2/website-next/docs/reference-metrics.md b/site2/website-next/docs/reference-metrics.md
index b7493367c7d..0d85f3f42b4 100644
--- a/site2/website-next/docs/reference-metrics.md
+++ b/site2/website-next/docs/reference-metrics.md
@@ -695,12 +695,12 @@ All the transaction metrics are labelled with the following labels:
 - *cluster*: `cluster=${pulsar_cluster}`. `${pulsar_cluster}` is the cluster name that you have configured in the `broker.conf` file.
 - *coordinator_id*: `coordinator_id=${coordinator_id}`. `${coordinator_id}` is the coordinator id.
 
-| Name | Type | Description |
-|---|---|---|
-| pulsar_txn_active_count | Gauge | Number of active transactions. |
-| pulsar_txn_created_count | Counter | Number of created transactions. |
-| pulsar_txn_committed_count | Counter | Number of committed transactions. |
-| pulsar_txn_aborted_count | Counter | Number of aborted transactions of this coordinator. |
-| pulsar_txn_timeout_count | Counter | Number of timeout transactions. |
-| pulsar_txn_append_log_count | Counter | Number of append transaction logs. |
+| Name                              | Type | Description |
+|-----------------------------------|---|---|
+| pulsar_txn_active_count           | Gauge | Number of active transactions. |
+| pulsar_txn_created_total          | Counter | Number of created transactions. |
+| pulsar_txn_committed_total        | Counter | Number of committed transactions. |
+| pulsar_txn_aborted_total          | Counter | Number of aborted transactions of this coordinator. |
+| pulsar_txn_timeout_total          | Counter | Number of timeout transactions. |
+| pulsar_txn_append_log_total       | Counter | Number of append transaction logs. |
 | pulsar_txn_execution_latency_le_* | Histogram | Transaction execution latency. <br /> Available latencies are as below: <br /><ul><li> latency="10" is TransactionExecutionLatency between (0ms, 10ms]</li> <li>latency="20" is TransactionExecutionLatency between (10ms, 20ms]</li><li>latency="50" is TransactionExecutionLatency between (20ms, 50ms]</li><li>latency="100" is TransactionExecutionLatency between (50ms, 100ms]</li><li>latency="500" is TransactionExecutionLatency between (100ms,  [...]