Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-33711] Fix numbers of field of the taxi event / Fix broken link #66

Merged
merged 2 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ org.gradle.project.enable_scala = true

每次车程都由两个事件表示:行程开始(trip start)和行程结束(trip end)。

每个事件都由十一个字段组成
每个事件都由十个字段组成

```
rideId : Long // 每次车程的唯一id
Expand Down