"time too late" errors while reindexing

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: Medium
    • 3.13
    • Affects Version/s: 2.6.1 Pro, 3.0 Pro Preview
    • Component/s: Indexing
    • 2.06

      JIRA does not impose an upper limit on date fields. As a result, an invalid date can be entered that breaks lucene:

      2004-09-04 11:46:30,969 WARN [jira.issue.index.DefaultIndexManager] There was an exception whilst reindexing issue
      OPS-177java.lang.RuntimeException: time too late
      java.lang.RuntimeException: time too late
      at org.apache.lucene.document.DateField.timeToString(DateField.java:106)
      at org.apache.lucene.document.DateField.dateToString(DateField.java:92)
      at com.atlassian.jira.issue.index.AbstractDocument.indexDateField(AbstractDocument.java:96)
      at com.atlassian.jira.issue.index.IssueDocument.getDocument(IssueDocument.java:64)
      at com.atlassian.jira.issue.index.DefaultIndexManager.indexIssueAndComments(DefaultIndexManager.java:183)
      at com.atlassian.jira.issue.index.DefaultIndexManager.reIndexIssues(DefaultIndexManager.java:109)
      at com.atlassian.jira.issue.index.DefaultIndexManager.reIndexAll(DefaultIndexManager.java:71)
      at com.atlassian.jira.web.action.admin.IndexAdminImpl.doReindex(IndexAdminImpl.java:208)
      at com.atlassian.jira.web.action.admin.IndexAdminImpl.doActivate(IndexAdminImpl.java:159)
      at com.atlassian.jira.web.action.admin.IndexAdminImpl.doReindex(IndexAdminImpl.java:202)

      We can fix this by imposing the date length limit that Lucene imposes:

      // make date strings long enough to last a millenium
      private static int DATE_LEN = Long.toString(1000L*365*24*60*60*1000, Character.MAX_RADIX).length();
      ....
      if (s.length() > DATE_LEN)
      throw new RuntimeException("time too late");

            Assignee:
            Michael Tokar
            Reporter:
            Jeff Turner
            Votes:
            1 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:

                Estimated:
                Original Estimate - 2h Original Estimate - 2h
                2h
                Remaining:
                Remaining Estimate - 0h
                0h
                Logged:
                Time Spent - 4h
                4h