Add a quick start which contain some examples.#68
Merged
duhenglucky merged 14 commits intoapache:mainfrom Sep 25, 2021
ni-ze:private/debug
Merged
Add a quick start which contain some examples.#68duhenglucky merged 14 commits intoapache:mainfrom ni-ze:private/debug
duhenglucky merged 14 commits intoapache:mainfrom
ni-ze:private/debug
Conversation
DongyuanPan
reviewed
Sep 18, 2021
quick_start.md
Outdated
| ## rocketmq-streams 快速搭建 | ||
| --- | ||
| ### 前言 | ||
| 本文档主要介绍如何基于rocketmq-streams快熟搭建流处理任务,搭建过程中某些例子会用到rocketmq,可以参考[rocketmq搭建文档见文档](https://rocketmq.apache.org/docs/quick-start/) |
There was a problem hiding this comment.
This sentense has a typo, please check 快熟.
RongtongJin
reviewed
Sep 18, 2021
quick_start.md
Outdated
| ## rocketmq-streams 快速搭建 | ||
| --- | ||
| ### 前言 | ||
| 本文档主要介绍如何基于rocketmq-streams快熟搭建流处理任务,搭建过程中某些例子会用到rocketmq,可以参考[rocketmq搭建文档见文档](https://rocketmq.apache.org/docs/quick-start/) |
Contributor
There was a problem hiding this comment.
可以参考[rocketmq搭建文档],见文档多余
rocketmq-streams-examples/README.md
Outdated
| ### 2、分时间段,统计分组中某字段的和 | ||
|
|
||
| #### 2.1 安装rocketmq | ||
| 可以参考[rocketmq搭建文档见文档](https://rocketmq.apache.org/docs/quick-start/) |
rocketmq-streams-examples/README.md
Outdated
| ```java | ||
| public void findMax() { | ||
| DataStreamSource source = StreamBuilder.dataStream("ns-1", "pl-1"); | ||
| source.fromFile("/Users/nize/result.txt", false) |
Contributor
There was a problem hiding this comment.
It would be better not to appear personal path.
Contributor
Author
already supported In the latest code. |
duhenglucky
reviewed
Sep 23, 2021
| import java.util.Map; | ||
| import java.util.Set; | ||
| import java.util.UUID; | ||
| import java.util.*; |
Contributor
There was a problem hiding this comment.
import java.util.*; It is not recommended to use * to aggregate all imports.
duhenglucky
reviewed
Sep 24, 2021
|
|
||
| 可查看原数据文件,eventTime为时间字段,简单检查后上述结果与预期相符合。 | ||
|
|
||
| #### 3.2、统计某段时间窗口内,被点击次数最多的网页 |
Contributor
There was a problem hiding this comment.
Could we add chapter 3.3 to describe the scale in/out ability of rocketmq-streams
duhenglucky
approved these changes
Sep 25, 2021
duhenglucky
pushed a commit
that referenced
this pull request
Oct 22, 2021
* a runnable window example reading data from rocketmq. * add quick start * modify quick_start * modify example. * modify and add another pageclick example. * remove private path * fix spelling mistakes * use mysql as remote checkpoint storage * modify code style of import class * modify annotation Co-authored-by: nize <[email protected]>
duhenglucky
pushed a commit
that referenced
this pull request
Oct 22, 2021
* a runnable window example reading data from rocketmq. * add quick start * modify quick_start * modify example. * modify and add another pageclick example. * remove private path * fix spelling mistakes * use mysql as remote checkpoint storage * modify code style of import class * modify annotation Co-authored-by: nize <[email protected]>
ni-ze
added a commit
to ni-ze/rocketmq-streams
that referenced
this pull request
Oct 7, 2022
* a runnable window example reading data from rocketmq. * add quick start * modify quick_start * modify example. * modify and add another pageclick example. * remove private path * fix spelling mistakes * use mysql as remote checkpoint storage * modify code style of import class * modify annotation Co-authored-by: nize <[email protected]>
ni-ze
added a commit
to ni-ze/rocketmq-streams
that referenced
this pull request
Oct 7, 2022
* a runnable window example reading data from rocketmq. * add quick start * modify quick_start * modify example. * modify and add another pageclick example. * remove private path * fix spelling mistakes * use mysql as remote checkpoint storage * modify code style of import class * modify annotation Co-authored-by: nize <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a quick start which contain some examples.