You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Install docker-compose:
44
44
45
45
* HDFS: http://namenode:9870/
46
46
* YARN: http://resourcemanager:8088/
47
-
* ES:http://elasticsearch:9200/
47
+
* ES£ºhttp://elasticsearch:9200/
48
48
* Kibana:http://kibana:5601/
49
49
* Presto: http://prestodb:9999/
50
50
* Hbase: http://hbase-master:16010/
@@ -69,7 +69,7 @@ Note: you have to add the server ip and services (which defined in docker-compos
69
69
collection items terminated by '-'
70
70
map keys terminated by ':'
71
71
location '/user/test'
72
-
```
72
+
```
73
73
</pre>
74
74
75
75
<pre>
@@ -163,12 +163,30 @@ get 'person','1','info:name'
163
163
3. query some data: show schemas; show tables; select * from nodes;
164
164
4. you can also verify presto status through web ui: http://your-host-ip:9999
165
165
```
166
+
167
+
## Testing Alluxio
168
+
It's pretty simple to test alluxio. Go to http://alluxio-master:19999 to check the status of alluxio. And you can mount HDFS file to alluxio from alluxio client like below:
169
+
```
170
+
1. docker-compose exec alluxio-master bash
171
+
2. alluxio fs mount /alluxio-dir hdfs://namenode:9000/somedir
172
+
3. check files from http://alluxio-master:19999 or from alluxio client.
173
+
4. alluxio fs ls /alluxio-dir
174
+
```
175
+
Altnatively, you can test the intergation with flink. Just follow the step:
176
+
```
177
+
1. docker-compose exec jobmanager bash
178
+
2. cd /opt/flink/bin
179
+
3. flink run ../examples/batch/WordCount.jar \
180
+
--input alluxio://alluxio-master:19998/LICENSE \
181
+
--output alluxio://alluxio-master:19998/output
182
+
4.
183
+
166
184
## Run jobs on the docker platform.
167
185
168
186
For java developers, I provide some tests over the platform. You can fork it from [here](https://github.com/spancer/flink-iceberg-demo), the test project
169
187
contains flink jobs with set of components, such as kafka, elasticsearch, iceberg, etc.. Source and sink examples are fully inclued.
0 commit comments