pinot
pinot copied to clipboard
Apache Pinot - A realtime distributed OLAP datastore
Hi folks, we are excited to share our proposal for supporting a Generic Time Series Engine in Pinot: https://docs.google.com/document/d/1SBDDf71QZINYUjAbRSWguNMfbrWRGfdcF1JPi8SJZlM/edit You can find a quick overview of the proposal below. ###...
Fix the failures in #14045
Instructions: 1. The PR has to be tagged with at least one of the following labels (*): 1. `feature` 2. `bugfix` 3. `performance` 4. `ui` 5. `backward-incompat` 6. `release-notes` (**)...
Pinot 1.2.0 The following query ``` SELECT * FROM (SELECT CASE WHEN m.userId = 'abc123' THEN 'Test1' ELSE 'Test2' END as segment FROM example m) WHERE segment in ('Test1', 'Test2')...
I've noticed `Delete Schema` never works from the table UI since you can't delete the schema without deleting the table first. And if you delete the table, you get redirected...
Check the failures [here](https://github.com/apache/pinot/pull/14005)
https://github.com/apache/pinot/pull/13905/files ``` Invalid schema config json string: { "metricFieldSpecs": [ { "dataType": "INT", "name": "ActualElapsedTime" }, { "dataType": "INT", "name": "AirTime" }, { "dataType": "INT", "name": "ArrDel15" }, { "dataType":...
Right now, pagination only works with selection queries with order by ``` SELECT foo, bar FROM myTable WHERE baz > 20 ORDER BY bar DESC LIMIT 50, 100 ``` Paginate...
Recently, we've observed that RT ingestion stopped simply because of not enough servers to fulfil the replication configured and no warning / error given to user. This PR adds a...
Logging is a relative expensive operation. Logging during tests is only useful if it is being read (so most likely it is ignored during a succesful run), so it should...