Class SortMergeJoinOperator

    • Constructor Detail

    • Method Detail

      • open

        public void open()
                  throws Exception
        Description copied from class: AbstractStreamOperator
        This method is called immediately before any elements are processed, it should contain the operator's initialization logic, e.g. state initialization.

        The default implementation does nothing.

        Specified by:
        open in interface StreamOperator<RowData>
        Overrides:
        open in class TableStreamOperator<RowData>
        Throws:
        Exception - An exception in this method causes the operator to fail.
      • endInput

        public void endInput​(int inputId)
                      throws Exception
        Description copied from interface: BoundedMultiInput
        It is notified that no more data will arrive from the input identified by the inputId. The inputId is numbered starting from 1, and `1` indicates the first input.

        WARNING: It is not safe to use this method to commit any transactions or other side effects! You can use this method to e.g. flush data buffered for the given input or implement an ordered reading from multiple inputs via InputSelectable.

        Specified by:
        endInput in interface BoundedMultiInput
        Throws:
        Exception
      • close

        public void close()
                   throws Exception
        Description copied from interface: StreamOperator
        This method is called at the very end of the operator's life, both in the case of a successful completion of the operation, and in the case of a failure and canceling.

        This method is expected to make a thorough effort to release all resources that the operator has acquired.

        NOTE:It can not emit any records! If you need to emit records at the end of processing, do so in the StreamOperator.finish() method.

        Specified by:
        close in interface StreamOperator<RowData>
        Overrides:
        close in class AbstractStreamOperator<RowData>
        Throws:
        Exception