Skip to content

Commit e19a90b

Browse files
author
Will McGinnis
committed
fixing image links
1 parent 27b4675 commit e19a90b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Python Flink Examples
22
=====================
33

4-
![Flink UI](https://github.com/wdm0006/flink-python-examples/tree/master/images/flink_ui.png)
4+
![Flink UI](https://raw.githubusercontent.com/wdm0006/flink-python-examples/master/images/flink_ui.png)
55

66
A collection of examples using Apache Flink's new python API. To set up your local environment with
77
the latest Flink build, see the guide:
@@ -28,7 +28,7 @@ Word Count
2828
An extremely simple analysis program uses a source from a simple string, counts the occurrences of each word
2929
and outputs to a file on disk (using the overwrite functionality).
3030

31-
![Word Count Plan](https://github.com/wdm0006/flink-python-examples/tree/master/images/word_count_plan.png)
31+
![Word Count Plan](https://raw.githubusercontent.com/wdm0006/flink-python-examples/master/images/word_count_plan.png)
3232

3333
Trending Hashtags
3434
-----------------
@@ -37,7 +37,7 @@ A very similar example to word count, but includes a filter step to only include
3737
The input data in this case is read off of disk, and the output is written as a csv. The file is generated dynamically
3838
at run time, so you can play with different volumes of tweets to get an idea of Flink's scalability and performance.
3939

40-
![Trending Hashtags Plan](https://github.com/wdm0006/flink-python-examples/tree/master/images/trending_hashtags_plan.png)
40+
![Trending Hashtags Plan](https://raw.githubusercontent.com/wdm0006/flink-python-examples/master/images/trending_hashtags_plan.png)
4141

4242
Data Enrichment
4343
---------------
@@ -46,22 +46,22 @@ In this example, we have row-wise json in one file, with an attribute field that
4646
colors. So we load both datasets in, convert the json data into a ordered and typed tuple, and join then two together
4747
to get a nice dataset of cars and their colors.
4848

49-
![Data Enrichment Plan](https://github.com/wdm0006/flink-python-examples/tree/master/images/data_enrichment_plan.png)
49+
![Data Enrichment Plan](https://raw.githubusercontent.com/wdm0006/flink-python-examples/master/images/data_enrichment_plan.png)
5050

5151
Mean Values
5252
-----------
5353

5454
Takes in a csv with two columns and finds the mean of each column, using a custom reducer function. Afterwards, it
5555
formats a string nicely with the output and dumps that onto disk.
5656

57-
![Mean Values Plan](https://github.com/wdm0006/flink-python-examples/tree/master/images/mean_values_plan.png)
57+
![Mean Values Plan](https://raw.githubusercontent.com/wdm0006/flink-python-examples/master/images/mean_values_plan.png)
5858

5959
Mandelbrot Set
6060
--------------
6161

6262
Creates a Mandelbrot set from a set of candidates. Inspired by [this post](http://1oclockbuzz.com/2015/11/24/pyspark-and-the-mandelbrot-set-overkill-indeed/)
6363

64-
![Mandelbrot Plan](https://github.com/wdm0006/flink-python-examples/tree/master/images/mandelbrot_plan.png)
64+
![Mandelbrot Plan](https://raw.githubusercontent.com/wdm0006/flink-python-examples/master/images/mandelbrot_plan.png)
6565

6666
Features
6767
========

0 commit comments

Comments
 (0)