EO W
11/30/2022, 5:43 AM$ts$MINUTE
column as a group by condition as shown below, will a timestamp index be used?
select
toDateTime(round($request_timestamp$MINUTE, 300000), 'yyyy-MM-dd HH:mm', 'Asia/Seoul') AS time_bucket
, url
, action
, count(1)
from user_behavior_log
group by time_bucket, url, action
How should I query for the 5 minute aggregation?Rohit Anilkumar
12/01/2022, 6:13 AMRostan TABET
12/01/2022, 2:06 PMGAPFILL
in the Multi-Stage Query engine?Damon
12/02/2022, 6:23 AMprometheus-community/kube-prometheus-stack
but the CPU usage panels is showing no data since I am metric container_cpu_`user`_seconds_total , but I have container_cpu_`usage`_seconds_total
Is there a way to enable the missing user metric?Ajay Chintala
12/02/2022, 8:22 PMAlice
12/05/2022, 7:44 AMSonit Rathi
12/05/2022, 8:28 AMvishal
12/05/2022, 11:09 AMMohit Garg4628
12/05/2022, 11:36 AMJeff Bolle
12/05/2022, 3:33 PMKevin Xu
12/06/2022, 2:44 AMJeff Bolle
12/06/2022, 4:20 PMMarco Ndoping
12/07/2022, 4:22 AMSELECT ToDateTime(1639137263000, 'yyyy-MM-dd') AS dateTimeString FROM ignoreMe
and SELECT FromDateTime('2019-08-07', 'yyyy-MM-dd') AS epochMillis FROM ignoreMe
in Pinot's multi stage engine from the Pinot UI. Here's the error message:
{
"message": "SQLParsingError\njava.lang.RuntimeException Error composing query plan for: SELECT FromDateTime('2019-08-07', 'yyyy-MM-dd') AS epochMillis\nFROM ignoreMe\n\tat org.apache.pinot.query.QueryEnvironment.planQuery(QueryEnvironment.java:137)\n\tat org.apache.pinot.broker.requesthandler.MultiStageBrokerRequestHandler.handleRequest(MultiStageBrokerRequestHandler.java:153)\n\tat org.apache.pinot.broker.requesthandler.MultiStageBrokerRequestHandler.handleRequest(MultiStageBrokerRequestHandler.java:128)\n...\nCaused by: java.lang.IllegalArgumentException: Could not find schema for table: 'ignoreMe'. This is likely indicative of some kind of corruption and should not happen! If you are running this via the a test environment, check to make sure you're specifying the correct tables.\n\tat org.apache.pinot.query.catalog.PinotCatalog.getTable(PinotCatalog.java:68)\n\tat org.apache.calcite.jdbc.SimpleCalciteSchema.getImplicitTable(SimpleCalciteSchema.java:126)\n\tat org.apache.calcite.jdbc.CalciteSchema.getTable(CalciteSchema.java:295)\n\tat org.apache.calcite.sql.validate.EmptyScope.resolve_(EmptyScope.java:145)",
"errorCode": 150
}
Is this a known issue? Can you please investigate and confirm whether we need to create an issue here?Saqlain Khan
12/07/2022, 9:58 AMVishnu Ghanta
12/07/2022, 11:19 PMTransient Exception: Could not get partition count for topic test1
org.apache.pinot.spi.stream.TransientConsumerException: <http://org.apache.pinot.shaded.org|org.apache.pinot.shaded.org>.apache.kafka.common.errors.TimeoutException: Failed to get offsets by times in 5002ms
.
.
.
Caused by: <http://org.apache.pinot.shaded.org|org.apache.pinot.shaded.org>.apache.kafka.common.errors.TimeoutException: Failed to get offsets by times in 5002ms
If I describe the topic using kafka cli, I am able to see the partition count
Kafka is deployed in another namespace and its version is 2.13-2.6.3
Please help if anyone has faced this error. TIAKevin Xu
12/08/2022, 2:33 AMTaskFactory taskFactory = context -> {
try {
return new Task() {
private final TaskConfig _taskConfig = context.getTaskConfig();
private final PinotTaskExecutor _taskExecutor = taskExecutorFactory.create();
private final MinionEventObserver _eventObserver = eventObserverFactory.create();
private final MinionMetrics _minionMetrics = MinionContext.getInstance().getMinionMetrics();
@Override
public TaskResult run() {
HelixManager helixManager = context.getManager();
JobContext jobContext = TaskDriver.getJobContext(helixManager, context.getJobConfig().getJobId());
// jobContext.getStartTime() return the time in milliseconds of job being put into helix queue.
long jobInQueueTimeMs = jobContext.getStartTime();
long jobDequeueTimeMs = System.currentTimeMillis();
Xiang Fu
Yarden Rokach
vishal
12/09/2022, 6:59 AMRohit Anilkumar
12/09/2022, 10:42 AMinvertedIndexColumns
can be specified using this keyword but how do we specify sorted inverted index cols?Timothy Spann
12/11/2022, 10:01 PMChengxuan Wang
12/13/2022, 4:02 AMYarden Rokach
Yarden Rokach
Shaun Sawyer
12/15/2022, 2:47 PMYarden Rokach
Aaron Weiss
12/16/2022, 3:53 PMCaused by: org.apache.pinot.shaded.com.fasterxml.jackson.databind.exc.MismatchedInputException: Missing required creator property 'tableName' (index 0)
at [Source: UNKNOWN; line: -1, column: -1] (through reference chain: org.apache.pinot.spi.config.table.TableConfig["tableName"])
Arpan Samariya
12/17/2022, 6:38 AMvishal
12/19/2022, 12:51 PMchandarasekaran m
12/20/2022, 5:45 AM