You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2020/09/11 04:41:55 UTC

[pulsar] branch master updated: Fix broken trigger link (#8017)

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 <48...@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.