You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2018/12/24 11:17:11 UTC

[flink] branch release-1.7 updated: [hotfix] [docs] Fix broken links in State Schema Evolution docs

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

tzulitai pushed a commit to branch release-1.7
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.7 by this push:
     new a958d84  [hotfix] [docs] Fix broken links in State Schema Evolution docs
a958d84 is described below

commit a958d8422817f3b6fe9b6b9c2c77f8c81011ca41
Author: Tzu-Li (Gordon) Tai <tz...@apache.org>
AuthorDate: Mon Dec 24 19:14:37 2018 +0800

    [hotfix] [docs] Fix broken links in State Schema Evolution docs
---
 docs/dev/stream/state/schema_evolution.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/dev/stream/state/schema_evolution.md b/docs/dev/stream/state/schema_evolution.md
index e4c2d4a..f2f52b2 100644
--- a/docs/dev/stream/state/schema_evolution.md
+++ b/docs/dev/stream/state/schema_evolution.md
@@ -51,11 +51,11 @@ checkpointedState = getRuntimeContext().getListState(descriptor);
 Under the hood, whether or not the schema of state can be evolved depends on the serializer used to read / write
 persisted state bytes. Simply put, a registered state's schema can only be evolved if its serializer properly
 supports it. This is handled transparently by serializers generated by Flink's type serialization framework
-(current scope of support is listed [below]({{ site.baseurl }}/dev/stream/state/schema_evolution#supported-data-types-for-schema-evolution)).
+(current scope of support is listed [below]({{ site.baseurl }}/dev/stream/state/schema_evolution.html#supported-data-types-for-schema-evolution)).
 
 If you intend to implement a custom `TypeSerializer` for your state type and would like to learn how to implement
 the serializer to support state schema evolution, please refer to
-[Custom State Serialization]({{ site.baseurl }}/dev/stream/state/custom_serialization).
+[Custom State Serialization]({{ site.baseurl }}/dev/stream/state/custom_serialization.html).
 The documentation there also covers necessary internal details about the interplay between state serializers and Flink's
 state backends to support state schema evolution.