mayankshriv commented on a change in pull request #3511: [PINOT-7370] Track
bytes read per query
URL: https://github.com/apache/incubator-pinot/pull/3511#discussion_r243371347
##########
File path:
pinot-core/src/main/java/com/linkedin/pinot/core/query/scheduler/QueryScheduler.java
##########
@@ -144,6 +144,12 @@ public void stop() {
String tableNameWithType = queryRequest.getTableNameWithType();
long numDocsScanned =
Long.parseLong(dataTableMetadata.getOrDefault(DataTable.NUM_DOCS_SCANNED_METADATA_KEY,
INVALID_NUM_SCANNED));
+ long numIndicesLoaded =
+
Long.parseLong(dataTableMetadata.getOrDefault(DataTable.NUM_INDICES_LOADED_KEY,
"0"));
Review comment:
Could we investigate if these can be stored as numeric values within the
metadata, so parsing is not required?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]