From commits-return-62262-archive-asf-public=cust-asf.ponee.io@pulsar.apache.org Fri Sep 11 04:41:58 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 608A118060E for ; Fri, 11 Sep 2020 06:41:58 +0200 (CEST) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id 8E39312338E for ; Fri, 11 Sep 2020 04:41:57 +0000 (UTC) Received: (qmail 13160 invoked by uid 500); 11 Sep 2020 04:41:57 -0000 Mailing-List: contact commits-help@pulsar.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pulsar.apache.org Delivered-To: mailing list commits@pulsar.apache.org Received: (qmail 13151 invoked by uid 99); 11 Sep 2020 04:41:57 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Sep 2020 04:41:57 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 069C58087C; Fri, 11 Sep 2020 04:41:57 +0000 (UTC) Date: Fri, 11 Sep 2020 04:41:55 +0000 To: "commits@pulsar.apache.org" Subject: [pulsar] branch master updated: Fix broken trigger link (#8017) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <159979931492.2689.12906475897823252588@gitbox.apache.org> From: sijie@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: pulsar X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: a69c054f6af1c5111c9a079302b82d2a6ac198b9 X-Git-Newrev: 32d5d99371ab291ebb1e3adf96c5a80327d22a37 X-Git-Rev: 32d5d99371ab291ebb1e3adf96c5a80327d22a37 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. sijie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pulsar.git The following commit(s) were added to refs/heads/master by this push: new 32d5d99 Fix broken trigger link (#8017) 32d5d99 is described below commit 32d5d99371ab291ebb1e3adf96c5a80327d22a37 Author: Luke Stephenson <48660846+lukestephenson-zendesk@users.noreply.github.com> AuthorDate: Fri Sep 11 14:41:08 2020 +1000 Fix broken trigger link (#8017) --- site2/docs/cookbooks-compaction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site2/docs/cookbooks-compaction.md b/site2/docs/cookbooks-compaction.md index ff638b8..ec0706d 100644 --- a/site2/docs/cookbooks-compaction.md +++ b/site2/docs/cookbooks-compaction.md @@ -9,7 +9,7 @@ Pulsar's [topic compaction](concepts-topic-compaction.md#compaction) feature ena To use compaction: * You need to give messages keys, as topic compaction in Pulsar takes place on a *per-key basis* (i.e. messages are compacted based on their key). For a stock ticker use case, the stock symbol---e.g. `AAPL` or `GOOG`---could serve as the key (more on this [below](#when-should-i-use-compacted-topics)). Messages without keys will be left alone by the compaction process. -* Compaction can be configured to run [automatically](#configuring-compaction-to-run-automatically), or you can manually [trigger](#trigger) compaction using the Pulsar administrative API. +* Compaction can be configured to run [automatically](#configuring-compaction-to-run-automatically), or you can manually [trigger](#triggering-compaction-manually) compaction using the Pulsar administrative API. * Your consumers must be [configured](#consumer-configuration) to read from compacted topics ([Java consumers](#java), for example, have a `readCompacted` setting that must be set to `true`). If this configuration is not set, consumers will still be able to read from the non-compacted topic.