Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-1343

Branching Join Program Deadlocks

Attach filesAttach ScreenshotVotersWatch issueWatchersCreate sub-taskLinkCloneUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 0.8.0, 0.9
    • 0.9
    • Runtime / Coordination
    • None

    Description

      The following program which gets its data from a single non-parallel data source, branches two times, and joins the branches with two joins, deadlocks.

      public class DeadlockProgram {
      
          public static void main(String[] args) throws Exception {
              final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
      
              DataSet<Long> longs = env.generateSequence(0,1000000l).setParallelism(1);
              DataSet<Long> longs2 = env.generateSequence(0, 1000000l).setParallelism(1);
      
              DataSet<Tuple1<Long>> longT1 = longs.map(new TupleWrapper());
              DataSet<Tuple1<Long>> longT2 = longT1.project(0);
              DataSet<Tuple1<Long>> longT3 = longs.map(new TupleWrapper()); // deadlocks
      //        DataSet<Tuple1<Long>> longT3 = longs2.map(new TupleWrapper()); // works
      
      
              longT2.join(longT3).where(0).equalTo(0).projectFirst(0)
                  .join(longT1).where(0).equalTo(0).projectFirst(0)
                  .print();
      
              env.execute();
          }
      
          public static class TupleWrapper implements MapFunction<Long, Tuple1<Long>> {
              @Override
              public Tuple1<Long> map(Long l) throws Exception {
                  return new Tuple1<Long>(l);
              }
          };
      }
      

      If one of the branches reads its data from a second data source (see inline comment) or if the single data source uses the default parallelism, the program executes correctly.

      Attachments

        Issue Links

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            Unassigned Unassigned
            fhueske Fabian Hueske
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment