Skip to content

Commit 13df954

Browse files
authored
update version match (#101)
1 parent 94c76e2 commit 13df954

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

README.md

+16-7
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,13 @@ To read data from NebulaGraph using Flink.
7373
StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();
7474
env.setParallelism(1);
7575
76+
VertexExecutionOptions vertexExecutionOptions = new VertexExecutionOptions.ExecutionOptionBuilder()
77+
.setGraphSpace("flinkSource")
78+
.setTag("person")
79+
.setNoColumn(false)
80+
.setFields(Arrays.asList())
81+
.setLimit(100)
82+
.build();
7683
NebulaSourceFunction sourceFunction = new NebulaSourceFunction(storageConnectionProvider)
7784
.setExecutionOptions(vertexExecutionOptions);
7885
DataStreamSource<BaseTableRow> dataStreamSource = env.addSource(sourceFunction);
@@ -204,13 +211,15 @@ To operate Schema and data using Flink SQL.
204211
There are the version correspondence between Nebula Flink Connector and Nebula:
205212

206213
| Nebula Flink Connector Version | Nebula Version |
207-
|:-----------------------:|:--------------:|
208-
| 2.0.0 | 2.0.0, 2.0.1 |
209-
| 2.5.0 | 2.5.0, 2.5.1 |
210-
| 2.6.0 | 2.6.0, 2.6.1 |
211-
| 2.6.1 | 2.6.0, 2.6.1 |
212-
| 3.0.0 | 3.0.x, 3.1.x |
213-
| 3.0-SNAPSHOT | nightly |
214+
|:------------------------------:|:--------------:|
215+
| 2.0.0 | 2.0.0, 2.0.1 |
216+
| 2.5.0 | 2.5.0, 2.5.1 |
217+
| 2.6.0 | 2.6.0, 2.6.1 |
218+
| 2.6.1 | 2.6.0, 2.6.1 |
219+
| 3.0.0 | 3.x.x |
220+
| 3.3.0 | 3.x.x |
221+
| 3.5.0 | 3.x.x |
222+
| 3.0-SNAPSHOT | nightly |
214223

215224
## Note
216225
Flink version requirements: 1.11.x

0 commit comments

Comments
 (0)