Uploaded image for project: 'Apache NiFi'
  1. Apache NiFi
  2. NIFI-2159

Fingerprint not detecting flow.xml differences

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Blocker
    • Resolution: Fixed
    • 0.6.1
    • 1.0.0, 0.7.0, 1.0.0-Beta
    • None
    • None
    • Important

    Description

      We have very occasionally observed situations where the flow.xml across a cluster was able to become inconsistent, resulting in unexpected behavior. While investigating, the following issue was found. While we are not 100% that this problem is the one we were looking for, it is definitely an issue...

      Within the FingerprintFactory, the text values from <relationship> tags were always being appended to the fingerprint as a default value of "NO_VALUE" regardless of whether or not they actually contained a value. This can manifest as two different flow.xml files being considered the same when they have the same number of relationship tags, even though those tags contain different values. Here is a suggested fix:

      Change the following in FingerprintFactory.java[1]:

      final List<Element> sortedRelationshipElems = sortElements(relationshipElems, getConnectionRelationshipsComparator());
      for (final Element relationshipElem : sortedRelationshipElems) {
              addConnectionRelationshipFingerprint(builder, relationshipElem);
      }
      

      To:

      for (int i = 0;i<relationshipElems.getLength();i++) {
             builder.append(getValue(relationshipElems.item(i),"NO_VALUE"));
      }
      

      The following unit test will show that the value of the relationship is now being used in the fingerprint:

      @Test
      public void testResourceValueInFingerprint() throws IOException{
             final String fp1 = fingerprinter.createFingerprint(getResourceBytes("/nifi/fingerprint/flow1a.xml"),null);
             assertEquals(3,StringUtils.countMatches(fp1,"success"));
      }
      

      Additionally, the <name> tag isn't being included in the fingerprint either. While the following solution has not been tested, it is possible that this could be fixed by adding the following line to the addConnectionFingerprint() method [2]:

      appendFirstValue(builder, DomUtils.getChildNodesByTagName(connectionElem, "name"));
      

      [1] https://github.com/apache/nifi/blob/270944ec692e12c221cdff202bdab56309dfcfd7/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/fingerprint/FingerprintFactory.java#L861-864
      [2] https://github.com/apache/nifi/blob/270944ec692e12c221cdff202bdab56309dfcfd7/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/fingerprint/FingerprintFactory.java#L857

      Attachments

        Issue Links

          Activity

            People

              markap14 Mark Payne
              devriesb Brandon Rhys DeVries
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: