Uploaded image for project: 'Solr'
  1. Solr
  2. SOLR-6224

Post soft-commit callbacks are called before soft commit actually happens

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 4.9
    • 5.0, 6.0
    • update
    • None

    Description

      DirectUpdateHandler2 has the following code:

      if (!cmd.softCommit) {
                synchronized (solrCoreState.getUpdateLock()) { // sync is currently needed to prevent preCommit
                                      // from being called between preSoft and
                                      // postSoft... see postSoft comments.
                  if (ulog != null) ulog.preCommit(cmd);
                }
                
                // SolrCore.verbose("writer.commit() start writer=",writer);
      
                if (writer.hasUncommittedChanges()) {
                  final Map<String,String> commitData = new HashMap<>();
                  commitData.put(SolrIndexWriter.COMMIT_TIME_MSEC_KEY,
                      String.valueOf(System.currentTimeMillis()));
                  writer.setCommitData(commitData);
                  writer.commit();
                } else {
                  log.info("No uncommitted changes. Skipping IW.commit.");
                }
      
                // SolrCore.verbose("writer.commit() end");
                numDocsPending.set(0);
                callPostCommitCallbacks();
              } else {
                callPostSoftCommitCallbacks();
              }
      

      As evident in the code above, if cmd.softCommit is true then the post soft commit hooks are called first and the actual soft commit happens in a block of code after it.

      Attachments

        1. SOLR-6224.patch
          4 kB
          Shalin Shekhar Mangar
        2. SOLR-6224.patch
          4 kB
          Shalin Shekhar Mangar

        Activity

          People

            shalin Shalin Shekhar Mangar
            shalin Shalin Shekhar Mangar
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: