Tim Berglund
vishal
03/24/2023, 9:44 AMYarden Rokach
Nikhil Srivastava
03/25/2023, 6:35 AMTim Berglund
Sonit Rathi
03/29/2023, 6:00 AMShreeram Goyal
03/30/2023, 8:37 AMYarden Rokach
Tim Berglund
Tim Berglund
David G. Simmons
03/30/2023, 7:19 PMkodalien kodalien
04/03/2023, 4:17 PMYarden Rokach
Barkha Herman
04/04/2023, 4:15 PMIsmail Mohammed
04/05/2023, 4:38 PMDoris Zhang
04/06/2023, 5:53 PMRohit Yadav
04/10/2023, 4:27 AMArush Kharbanda
04/10/2023, 11:25 AMBarkha Herman
04/11/2023, 10:42 PMSumit Lakra
04/13/2023, 10:28 AMMalte Granderath
04/14/2023, 7:11 AMVladyslav Shamaida
04/17/2023, 9:05 AMdim1, dim2, dim3, dim4, daysSinceEpoch, hoursSinceEpoch, metric
I need to query sum(metric)
grouped by days OR by hours with optional dimensions. Cardinality of dimensions is pretty low: from 3 to few hundreds unique values.
I decided to use star-tree index for that.
Is having both daysSinceEpoch
and hoursSinceEpoch
in dimensionsSplitOrder
a good approach here?
"dimensionsSplitOrder": [dim1, dim2, dim3, dim4, daysSinceEpoch, hoursSinceEpoch]
TTL of data is 3 months.Zhengfei
04/18/2023, 4:46 AM{
"dimensionTableConfig": {
"disablePreload": true
}
}
but a bit worried about this thread safety issue.Padma Malladi
04/18/2023, 6:13 PMPadma Malladi
04/18/2023, 6:14 PMRyan Tomczik
04/19/2023, 5:06 PMScott deRegt
04/19/2023, 8:15 PMserver
reboots for installing latest security patches on instances. We've noticed elevated failure rates on pinot queries during these times. We use replication factor of 3 to ensure HA. My understanding was that broker
would gracefully handle dead
server and scatter queries to a replica group that contains only alive
servers. Is that not the case? If not, is there a recommended path to taking a server at-a-time offline to perform reboot while maintaining full availability of the cluster? Does `disable`/`enable`-ing the server state (using /instances/{instanceName}/state
) during reboot cycle help here?Ashish Koirala
04/19/2023, 11:03 PMAdam Erickson
04/20/2023, 12:04 AM"JSON"
, do I have to worry about maxLength
and the JSON getting truncated or no? Is it internally stored as a string with fixed max length or does it grow for variable length JSON? Here are some links I found online that touch on the topic, but seem to conflict.
1) https://github.com/apache/pinot/issues/7051 , which says You may set the json field as data type JSON (introduced in #6878) and the value won't be truncated
2) https://docs.pinot.apache.org/basics/data-import/complex-type, which says ...Additionally, you need to overwrite the maxLength of the field group_json on the schema, because by default, a string column has a limited length. For example,...