Skip to content

Commit

Permalink
[apache#737] flink-rss-support first commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
slfan1989 committed May 19, 2024
1 parent 3b69e30 commit 5a817ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ public List<ResultPartitionWriter> createResultPartitionWriters(
ResultPartitionID resultPartitionId = shuffleDescriptor.getResultPartitionID();
ResultPartitionType partitionType = descriptor.getPartitionType();
int numberOfSubpartitions = descriptor.getNumberOfSubpartitions();
int totalNumberOfPartitions = descriptor.getTotalNumberOfPartitions();
int maxParallelism = descriptor.getMaxParallelism();

String compressionCodec =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public EndOfDataStatus hasReceivedEndOfData() {

@Override
public Optional<BufferOrEvent> getNext() {
throw new UnsupportedOperationException("Not implemented.");
throw new UnsupportedOperationException("Not implemented yet.");
}

@Override
Expand All @@ -108,12 +108,12 @@ public Optional<BufferOrEvent> pollNext() throws IOException {

@Override
public void sendTaskEvent(TaskEvent event) {
throw new FlinkRuntimeException("Method should not be called.");
throw new FlinkRuntimeException("Not implemented yet.");
}

@Override
public void resumeConsumption(InputChannelInfo channelInfo) throws IOException {
throw new FlinkRuntimeException("Method should not be called.");
throw new FlinkRuntimeException("Not implemented yet.");
}

@Override
Expand Down

0 comments on commit 5a817ca

Please sign in to comment.