This is an automated email from the ASF dual-hosted git repository.
janhoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-orbit-workloads.git
The following commit(s) were added to refs/heads/main by this push:
new 1beeeb2 Apply the exclusive upper bound to the four remaining
nyc_taxis operations (#19)
1beeeb2 is described below
commit 1beeeb2acdeb7668141a99ff17b941ecb0b5e5f6
Author: Serhiy Bzhezytskyy <[email protected]>
AuthorDate: Thu Sep 3 20:17:13 2026 +0300
Apply the exclusive upper bound to the four remaining nyc_taxis operations
(#19)
---
nyc_taxis/README.md | 8 ++++----
nyc_taxis/operations/default.json | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/nyc_taxis/README.md b/nyc_taxis/README.md
index 8e62e17..a22ba46 100644
--- a/nyc_taxis/README.md
+++ b/nyc_taxis/README.md
@@ -101,10 +101,10 @@ procedures above:
|-----------|-------|-------|
| `match-all` | `*:*` | Full-collection match |
| `range` | `total_amount:[5 TO 15}` | Range filter on a float field. The
upper bound is exclusive, matching the upstream `lt: 15` |
-| `distance_amount_facet` | `trip_distance:[0 TO 50]` + range facet | Range
facet on `trip_distance` |
-| `date_histogram_facet` | Date range, `+1DAY` gap | Daily dropoff histogram
(first 21 days of Jan 2015) |
-| `date_histogram_calendar_interval` | Date range, `+1MONTH` gap | Monthly
histogram, calendar-aligned buckets |
-| `date_histogram_fixed_interval` | Date range, `+30DAY` gap | Monthly
histogram, fixed-width buckets |
+| `distance_amount_facet` | `trip_distance:[0 TO 50}` + range facet | Range
facet on `trip_distance`. Exclusive upper bound, matching the upstream `lt: 50`
|
+| `date_histogram_facet` | Date range, `+1DAY` gap | Daily dropoff histogram,
all 21 days of Jan 2015. Upstream bounds this with `lte: 21/01/2015` in
`dd/MM/yyyy`, which covers the whole of the 21st, so the filter runs to
`2015-01-22T00:00:00Z` exclusive |
+| `date_histogram_calendar_interval` | Date range, `+1MONTH` gap | Monthly
histogram, calendar-aligned buckets. Exclusive upper bound, matching the
upstream `lt: 2016-01-01` |
+| `date_histogram_fixed_interval` | Date range, `+30DAY` gap | Monthly
histogram, fixed-width buckets. Exclusive upper bound, matching the upstream
`lt: 2016-01-01` |
| `desc_sort_tip_amount` | `*:*` sort `tip_amount desc` | Descending sort |
| `asc_sort_tip_amount` | `*:*` sort `tip_amount asc` | Ascending sort |
| `desc_sort_passenger_count` | `*:*` sort `passenger_count desc` | Descending
sort |
diff --git a/nyc_taxis/operations/default.json
b/nyc_taxis/operations/default.json
index d561f25..ad346df 100644
--- a/nyc_taxis/operations/default.json
+++ b/nyc_taxis/operations/default.json
@@ -41,7 +41,7 @@
"body": {
"query": "*:*",
"filter": [
- "trip_distance:[0 TO 50]"
+ "trip_distance:[0 TO 50}"
],
"limit": 0,
"facet": {
@@ -60,7 +60,7 @@
"name": "date_histogram_facet",
"operation-type": "search",
"body": {
- "query": "dropoff_datetime:[2015-01-01T00:00:00Z TO
2015-01-21T00:00:00Z]",
+ "query": "dropoff_datetime:[2015-01-01T00:00:00Z TO
2015-01-22T00:00:00Z}",
"limit": 0,
"facet": {
"dropoffs_over_time": {
@@ -78,7 +78,7 @@
"name": "date_histogram_calendar_interval",
"operation-type": "search",
"body": {
- "query": "dropoff_datetime:[2015-01-01T00:00:00Z TO
2016-01-01T00:00:00Z]",
+ "query": "dropoff_datetime:[2015-01-01T00:00:00Z TO
2016-01-01T00:00:00Z}",
"limit": 0,
"facet": {
"dropoffs_over_time": {
@@ -96,7 +96,7 @@
"name": "date_histogram_fixed_interval",
"operation-type": "search",
"body": {
- "query": "dropoff_datetime:[2015-01-01T00:00:00Z TO
2016-01-01T00:00:00Z]",
+ "query": "dropoff_datetime:[2015-01-01T00:00:00Z TO
2016-01-01T00:00:00Z}",
"limit": 0,
"facet": {
"dropoffs_over_time": {