Skip to content

guard geoline aggregation from parents aggegator that emit empty buckets #79129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void collect(int doc, long bucket) throws IOException {

@Override
public InternalAggregation buildAggregation(long bucket) {
if (valuesSources == null) {
if (valuesSources == null || bucket >= counts.size()) {
return buildEmptyAggregation();
}
boolean complete = counts.get(bucket) <= size;
Expand All @@ -98,7 +98,7 @@ public InternalAggregation buildAggregation(long bucket) {

@Override
public InternalAggregation buildEmptyAggregation() {
return new InternalGeoLine(name, null, null, metadata(), true, includeSorts, sortOrder, size);
return new InternalGeoLine(name, new long[0], new double[0], metadata(), true, includeSorts, sortOrder, size);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,137 @@
- match: { aggregations.trace.geometry.coordinates.1: [4.91235, 52.374081] }
- match: { aggregations.trace.geometry.coordinates.2: [4.914722, 52.371667] }
- is_true: aggregations.trace.properties.complete

---
"Test empty buckets":
- do:
indices.create:
index: test1
body:
mappings:
properties:
location:
type: geo_point
date:
type: date
entity:
type: keyword

- do:
indices.create:
index: test2
body:
mappings:
properties:
location:
type: geo_point
date:
type: date
entity:
type: keyword

- do:
bulk:
refresh: true
body:
- index:
_index: test1
_id: 1
- '{ "date" : "2020-01-01T01:00:00.0Z", "entity" : "e1", "location" : { "lat" : 50.3, "lon" : 0.13 }}'
- index:
_index: test1
_id: 2
- '{ "date" : "2020-01-01T01:00:01.0Z", "entity" : "e1", "location" : { "lat" : 50.4, "lon" : 0.13 } }'
- index:
_index: test1
_id: 3
- '{ "date" : "2020-01-01T01:00:03.0Z", "entity" : "e1", "location" : { "lat" : 50.5, "lon" : 0.13 }}'
- index:
_index: test2
_id: 1
- '{ "date" : "2020-01-02T02:00:01.0Z", "entity" : "e2", "location" : { "lat" : 51.3, "lon" : 0.13 }}'
- index:
_index: test2
_id: 2
- '{ "date" : "2020-01-02T02:00:02.0Z", "entity" : "e2", "location" : { "lat" : 51.4, "lon" : 0.13 }}'
- index:
_index: test2
_id: 3
- '{ "date" : "2020-01-02T02:00:03.0Z", "entity" : "e2", "location" : { "lat" : 51.5, "lon" : 0.13 }}'

- do:
search:
index: test1,test2
body:
size: 6
aggs:
tracks:
filters:
filters:
1:
term:
entity: e3
2:
term:
entity: e4
aggs:
path:
geo_line:
point:
field: location
sort:
field: date

- match: { hits.total.value: 6 }
- match: { aggregations.tracks.buckets.1.doc_count: 0 }
- match: { aggregations.tracks.buckets.1.path.type: "Feature" }
- match: { aggregations.tracks.buckets.1.path.geometry.type: "LineString" }
- length: { aggregations.tracks.buckets.1.path.geometry.coordinates: 0 }
- match: { aggregations.tracks.buckets.1.path.properties.complete: true }
- match: { aggregations.tracks.buckets.2.doc_count: 0 }
- match: { aggregations.tracks.buckets.2.path.type: "Feature" }
- match: { aggregations.tracks.buckets.2.path.geometry.type: "LineString" }
- length: { aggregations.tracks.buckets.2.path.geometry.coordinates: 0 }
- match: { aggregations.tracks.buckets.2.path.properties.complete: true }


- do:
search:
index: test1,test2
body:
size: 6
aggs:
tracks:
filters:
filters:
1:
term:
entity: e1
2:
term:
entity: e2
aggs:
path:
geo_line:
point:
field: location
sort:
field: date

- match: { hits.total.value: 6 }
- match: { aggregations.tracks.buckets.1.doc_count: 3 }
- match: { aggregations.tracks.buckets.1.path.type: "Feature" }
- match: { aggregations.tracks.buckets.1.path.geometry.type: "LineString" }
- length: { aggregations.tracks.buckets.1.path.geometry.coordinates: 3 }
- match: { aggregations.tracks.buckets.1.path.geometry.coordinates.0: [0.13,50.3] }
- match: { aggregations.tracks.buckets.1.path.geometry.coordinates.1: [0.13,50.4] }
- match: { aggregations.tracks.buckets.1.path.geometry.coordinates.2: [0.13,50.5] }
- match: { aggregations.tracks.buckets.1.path.properties.complete: true }
- match: { aggregations.tracks.buckets.2.doc_count: 3 }
- match: { aggregations.tracks.buckets.2.path.type: "Feature" }
- match: { aggregations.tracks.buckets.2.path.geometry.type: "LineString" }
- length: { aggregations.tracks.buckets.2.path.geometry.coordinates: 3 }
- match: { aggregations.tracks.buckets.2.path.geometry.coordinates.0: [0.13,51.3] }
- match: { aggregations.tracks.buckets.2.path.geometry.coordinates.1: [0.13,51.4] }
- match: { aggregations.tracks.buckets.2.path.geometry.coordinates.2: [0.13,51.5] }
- match: { aggregations.tracks.buckets.2.path.properties.complete: true }