Uploaded image for project: 'Kylin'
  1. Kylin
  2. KYLIN-1788

Allow arbitrary number of mandatory dimensions in one aggregation group

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • v1.5.2
    • v1.5.3
    • None
    • None

    Description

      To prevent one aggregation group containing too many combinations we apply a check

      if (mandatoryDims.size() + normalDimSize + hierarchySize + jointSize > maxSize) {
                      context.addResult(ResultLevel.ERROR, "Aggregation group " + index + " has too many dimensions");
                      continue;
                  }
      

      however the formular fails to take into account the case where there're many mandatory dimensions. For example, if we have 50 dimensions in a cube and we only need the base cuboid, then what we want is a single aggregation group containing all the dimensions, each of them being a mandatory.

      since mandatory dimensions are more "encouraged", I suggest to remove counting mandatory dimensions in the formula. the revised code will be:

      if (normalDimSize + hierarchySize + jointSize > maxSize) {
                      context.addResult(ResultLevel.ERROR, "Aggregation group " + index + " has too many dimensions");
                      continue;
                  }
      

      Attachments

        Issue Links

          Activity

            People

              mahongbin Hongbin Ma
              mahongbin Hongbin Ma
              Votes:
              1 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: