Suraj
04/16/2020, 9:49 PM{
"OFFLINE": null,
"REALTIME": {
"serviceCallView__0__0__20200416T2055Z": {
"Server_pinot-server-2.pinot-server.traceable.svc.cluster.local_8098": "CONSUMING"
},
"serviceCallView__1__0__20200416T2055Z": {
"Server_pinot-server-3.pinot-server.traceable.svc.cluster.local_8098": "CONSUMING"
}
}
}
Suraj
04/16/2020, 9:50 PMXiang Fu
Xiang Fu
Neha Pawar
Suraj
04/16/2020, 9:54 PMSuraj
04/16/2020, 9:55 PMXiang Fu
2020/04/16 21:29:37.162 WARN [ClientCnxn] [main-SendThread(zookeeper.traceable.svc.cluster.local:2181)] Session 0x0 for server null, unexpected error, closing socket connection and attempting reconnect
<http://java.net|java.net>.ConnectException: Connection refused
at <http://sun.nio.ch|sun.nio.ch>.SocketChannelImpl.checkConnect(Native Method) ~[?:1.8.0_212]
at <http://sun.nio.ch|sun.nio.ch>.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) ~[?:1.8.0_212]
at org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:361) ~[zookeeper-3.4.11.jar:3.4.11-37e277162d567b55a07d1755f0b31c32e93c01a0]
at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1144) ~[zookeeper-3.4.11.jar:3.4.11-37e277162d567b55a07d1755f0b31c32e93c01a0]
2020/04/16 21:29:38.326 INFO [HelixBrokerStarter] [main] Setting up broker server builder
Apr 16, 2020 9:29:39 PM org.glassfish.grizzly.http.server.NetworkListener start
INFO: Started listener bound to [0.0.0.0:8099]
Apr 16, 2020 9:29:39 PM org.glassfish.grizzly.http.server.HttpServer start
INFO: [HttpServer] Started.
2020/04/16 21:29:40.207 INFO [HelixBrokerStarter] [main] Initializing cluster change mediator
2020/04/16 21:29:40.792 INFO [HelixBrokerStarter] [main] Connecting participant Helix manager
2020/04/16 21:29:40.867 WARN [ParticipantHealthReportTask] [main] ParticipantHealthReportTimerTask already stopped
2020/04/16 21:29:41.301 WARN [CallbackHandler] [main] Callback handler received event in wrong order. Listener: org.apache.helix.messaging.handling.HelixTaskExecutor@2bc378f7, path: /traceable-views/INSTANCES/Broker_pinot-broker-1.pinot-broker.traceable.svc.cluster.local_8099/MESSAGES, expected types: [CALLBACK, FINALIZE] but was INIT
2020/04/16 21:29:41.365 INFO [HelixBrokerStarter] [main] Registering service status handler
2020/04/16 21:29:41.376 INFO [HelixBrokerStarter] [main] Finish starting Pinot broker
2020/04/16 21:29:41.972 WARN [ConfigAccessor] [ZkClient-EventThread-33-zookeeper:2181/pinot] No config found at /traceable-views/CONFIGS/RESOURCE/brokerResource
2020/04/16 21:29:42.591 ERROR [BaseRoutingTableBuilder] [HelixTaskExecutor-message_handle_thread] Found no server hosting segment serviceCallView__1__0__20200416T2055Z for table serviceCallView_REALTIME
2020/04/16 21:29:42.595 ERROR [BaseRoutingTableBuilder] [HelixTaskExecutor-message_handle_thread] Found no server hosting segment rawServiceView__1__0__20200416T1802Z for table rawServiceView_REALTIME
Xiang Fu
Xiang Fu
Xiang Fu
Xiang Fu
Suraj
04/16/2020, 9:58 PMSuraj
04/16/2020, 9:58 PMSuraj
04/16/2020, 9:58 PMXiang Fu
Xiang Fu
Xiang Fu
Suraj
04/16/2020, 10:01 PMXiang Fu
Suraj
04/16/2020, 10:02 PMSuraj
04/16/2020, 10:03 PMXiang Fu
Xiang Fu
Xiang Fu
Suraj
04/16/2020, 10:07 PMPranathi A
07/11/2023, 5:24 PMAshutosh Yadav
07/12/2023, 7:11 AMSatish Mittal
07/12/2023, 7:08 PMexplain plan for
select span_id from eventView
where REGEXP_LIKE(request_url,'<http://example.com|example.com>')
AND environment = 'production'
AND api_id != 'null'
AND start_time_millis > 1689187672000
limit 100
The output is attached. As per the doc https://docs.pinot.apache.org/users/user-guide-query/explain-plan, Pinot will run the operators bottom-up in the operator tree. That means Pinot will first execute REGEXP_LIKE (operator_id 10) that involves full scan, and then its output will be used for executing the other 2 inverted indexes (operator_id 9 and 8 ). Is this the correct interpretation?
Ideally, it is expected that Pinot should perform costly full scans as the last thing, after applying all inverted indexes that will give the minimal docIdSet. Is there a way to alter the ordering sequence of various filter expressions? Thanks in advance.David Pereira
07/12/2023, 8:43 PM