This is an automated email from the ASF dual-hosted git repository. danderson pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-training.git
The following commit(s) were added to refs/heads/master by this push: new dc81157 [FLINK-33711] Fix numbers of field of the taxi event / Fix broken link (#66) dc81157 is described below commit dc81157f826649b6084d968689f623ce41a1b46c Author: Leona Yoda <yo...@oss.nttdata.com> AuthorDate: Sat Dec 2 11:55:23 2023 +0900 [FLINK-33711] Fix numbers of field of the taxi event / Fix broken link (#66) * fix number of fields of the taxi ride event * fix broken link (use-taxi-data-streams) --------- Co-authored-by: Leona Yoda <yoda...@apache.org> --- README.md | 6 +++--- README_zh.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b1a65cb..9ed2a0c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Exercises that accompany the training content in the documentation. 1. [Clone and build the flink-training project](#clone-and-build-the-flink-training-project) 1. [Import the flink-training project into your IDE](#import-the-flink-training-project-into-your-ide) -[**Use the taxi data streams**](#using-the-taxi-data-streams) +[**Use the taxi data streams**](#use-the-taxi-data-streams) 1. [Schema of taxi ride events](#schema-of-taxi-ride-events) 1. [Schema of taxi fare events](#schema-of-taxi-fare-events) @@ -148,7 +148,7 @@ Our taxi data set contains information about individual taxi rides in New York C Each ride is represented by two events: a trip start, and a trip end. -Each event consists of eleven fields: +Each event consists of ten fields: ``` rideId : Long // a unique id for each ride @@ -189,7 +189,7 @@ We assume you have set up your development environment according to our [setup g ### Learn about the data The initial set of exercises are all based on data streams of events about taxi rides and taxi fares. These streams are produced by source functions which reads data from input files. -Read the [instructions](#using-the-taxi-data-streams) to learn how to use them. +Read the [instructions](#use-the-taxi-data-streams) to learn how to use them. ### Run and debug Flink programs in your IDE diff --git a/README_zh.md b/README_zh.md index 2af9bba..1914e08 100644 --- a/README_zh.md +++ b/README_zh.md @@ -156,7 +156,7 @@ org.gradle.project.enable_scala = true 每次车程都由两个事件表示:行程开始(trip start)和行程结束(trip end)。 -每个事件都由十一个字段组成: +每个事件都由十个字段组成: ``` rideId : Long // 每次车程的唯一id