-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04fe568
commit 0bd13bc
Showing
120 changed files
with
5,378 additions
and
627 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1913,6 +1913,7 @@ public Metadata getMetadata() | |
null, | ||
null, | ||
null, | ||
null, | ||
null | ||
); | ||
} | ||
|
212 changes: 212 additions & 0 deletions
212
processing/src/main/java/org/apache/druid/data/input/impl/AggregateProjectionSpec.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.druid.data.input.impl; | ||
|
||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonIgnore; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.google.common.collect.Lists; | ||
import org.apache.druid.error.InvalidInput; | ||
import org.apache.druid.java.util.common.granularity.Granularities; | ||
import org.apache.druid.java.util.common.granularity.Granularity; | ||
import org.apache.druid.query.OrderBy; | ||
import org.apache.druid.query.aggregation.AggregatorFactory; | ||
import org.apache.druid.segment.AggregateProjectionMetadata; | ||
import org.apache.druid.segment.VirtualColumn; | ||
import org.apache.druid.segment.VirtualColumns; | ||
import org.apache.druid.segment.column.ColumnHolder; | ||
import org.apache.druid.utils.CollectionUtils; | ||
|
||
import javax.annotation.Nullable; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.Objects; | ||
import java.util.stream.Collectors; | ||
|
||
/** | ||
* API type to specify an aggregating projection on {@link org.apache.druid.segment.incremental.IncrementalIndexSchema} | ||
* | ||
* Decorated with {@link JsonTypeInfo} annotations as a future-proofing mechanism in the event we add other types of | ||
* projections and need to extract out a base interface from this class. | ||
*/ | ||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type") | ||
@JsonTypeName(AggregateProjectionSpec.TYPE_NAME) | ||
public class AggregateProjectionSpec | ||
{ | ||
public static final String TYPE_NAME = "aggregate"; | ||
|
||
private final String name; | ||
private final List<DimensionSchema> groupingColumns; | ||
private final VirtualColumns virtualColumns; | ||
private final AggregatorFactory[] aggregators; | ||
private final List<OrderBy> ordering; | ||
@Nullable | ||
private final String timeColumnName; | ||
|
||
@JsonCreator | ||
public AggregateProjectionSpec( | ||
@JsonProperty("name") String name, | ||
@JsonProperty("virtualColumns") @Nullable VirtualColumns virtualColumns, | ||
@JsonProperty("groupingColumns") @Nullable List<DimensionSchema> groupingColumns, | ||
@JsonProperty("aggregators") @Nullable AggregatorFactory[] aggregators | ||
) | ||
{ | ||
this.name = name; | ||
if (CollectionUtils.isNullOrEmpty(groupingColumns)) { | ||
throw InvalidInput.exception("groupingColumns must not be null or empty"); | ||
} | ||
this.groupingColumns = groupingColumns; | ||
this.virtualColumns = virtualColumns == null ? VirtualColumns.EMPTY : virtualColumns; | ||
// in the future this should be expanded to support user specified ordering, but for now we compute it based on | ||
// the grouping columns, which is consistent with how rollup ordering works for incremental index base table | ||
final ProjectionOrdering ordering = computeOrdering(this.virtualColumns, this.groupingColumns); | ||
this.ordering = ordering.ordering; | ||
this.timeColumnName = ordering.timeColumnName; | ||
this.aggregators = aggregators == null ? new AggregatorFactory[0] : aggregators; | ||
} | ||
|
||
@JsonProperty | ||
public String getName() | ||
{ | ||
return name; | ||
} | ||
|
||
@JsonProperty | ||
@JsonInclude(JsonInclude.Include.NON_DEFAULT) | ||
public VirtualColumns getVirtualColumns() | ||
{ | ||
return virtualColumns; | ||
} | ||
|
||
@JsonProperty | ||
@JsonInclude(JsonInclude.Include.NON_DEFAULT) | ||
public List<DimensionSchema> getGroupingColumns() | ||
{ | ||
return groupingColumns; | ||
} | ||
|
||
@JsonProperty | ||
@JsonInclude(JsonInclude.Include.NON_DEFAULT) | ||
public AggregatorFactory[] getAggregators() | ||
{ | ||
return aggregators; | ||
} | ||
|
||
@JsonProperty | ||
public List<OrderBy> getOrdering() | ||
{ | ||
return ordering; | ||
} | ||
|
||
@JsonIgnore | ||
public AggregateProjectionMetadata.Schema toMetadataSchema() | ||
{ | ||
return new AggregateProjectionMetadata.Schema( | ||
name, | ||
timeColumnName, | ||
virtualColumns, | ||
groupingColumns.stream().map(DimensionSchema::getName).collect(Collectors.toList()), | ||
aggregators, | ||
ordering | ||
); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) | ||
{ | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
AggregateProjectionSpec that = (AggregateProjectionSpec) o; | ||
return Objects.equals(name, that.name) | ||
&& Objects.equals(groupingColumns, that.groupingColumns) | ||
&& Objects.equals(virtualColumns, that.virtualColumns) | ||
&& Objects.deepEquals(aggregators, that.aggregators) | ||
&& Objects.equals(ordering, that.ordering); | ||
} | ||
|
||
@Override | ||
public int hashCode() | ||
{ | ||
return Objects.hash(name, groupingColumns, virtualColumns, Arrays.hashCode(aggregators), ordering); | ||
} | ||
|
||
@Override | ||
public String toString() | ||
{ | ||
return "AggregateProjectionSpec{" + | ||
"name='" + name + '\'' + | ||
", groupingColumns=" + groupingColumns + | ||
", virtualColumns=" + virtualColumns + | ||
", aggregators=" + Arrays.toString(aggregators) + | ||
", ordering=" + ordering + | ||
'}'; | ||
} | ||
|
||
|
||
private static ProjectionOrdering computeOrdering(VirtualColumns virtualColumns, List<DimensionSchema> groupingColumns) | ||
{ | ||
final List<OrderBy> ordering = Lists.newArrayListWithCapacity(groupingColumns.size()); | ||
|
||
String timeColumnName = null; | ||
Granularity granularity = null; | ||
// try to find the __time column equivalent, which might be a time_floor expression to model granularity | ||
// bucketing. The time column is decided as the finest granularity on __time detected. If the projection does | ||
// not have a time-like column, the granularity will be handled as ALL for the projection and all projection | ||
// rows will use a synthetic timestamp of the minimum timestamp of the incremental index | ||
for (final DimensionSchema dimension : groupingColumns) { | ||
ordering.add(OrderBy.ascending(dimension.getName())); | ||
if (ColumnHolder.TIME_COLUMN_NAME.equals(dimension.getName())) { | ||
timeColumnName = dimension.getName(); | ||
granularity = Granularities.NONE; | ||
} else { | ||
final VirtualColumn vc = virtualColumns.getVirtualColumn(dimension.getName()); | ||
final Granularity maybeGranularity = Granularities.fromVirtualColumn(vc); | ||
if (granularity == null && maybeGranularity != null) { | ||
granularity = maybeGranularity; | ||
timeColumnName = dimension.getName(); | ||
} else if (granularity != null && maybeGranularity != null && maybeGranularity.isFinerThan(granularity)) { | ||
granularity = maybeGranularity; | ||
timeColumnName = dimension.getName(); | ||
} | ||
} | ||
} | ||
return new ProjectionOrdering(ordering, timeColumnName); | ||
} | ||
|
||
private static final class ProjectionOrdering | ||
{ | ||
private final List<OrderBy> ordering; | ||
@Nullable | ||
private final String timeColumnName; | ||
|
||
private ProjectionOrdering(List<OrderBy> ordering, @Nullable String timeColumnName) | ||
{ | ||
this.ordering = ordering; | ||
this.timeColumnName = timeColumnName; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.